Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kXlaCompileAttr (0.21 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                                             .WithAttr(kXlaCompileAttr, true)
                                             .WithAttr(kXlaScopeAttr, "Scope1"));
        Node* b = ops::UnaryOp("Relu", a,
                               builder.opts()
                                   .WithName("B")
                                   .WithAttr(kXlaCompileAttr, true)
                                   .WithAttr(kXlaScopeAttr, "Scope1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      bool compile = false;
      Status status = GetNodeAttr(node->attrs(), kXlaCompileAttr, &compile);
      if (status.ok()) {
        if (!compile) {
          VLOG(2) << "Rejecting " << node->name() << ": kXlaCompileAttr("
                  << kXlaCompileAttr << ") is false.";
        }
        return !compile;
      }
    
      status = flib_def_->GetAttr(*node, kXlaCompileAttr, &compile);
      if (status.ok()) {
        if (!compile) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top