Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for num_constant_args (0.12 sec)

  1. tensorflow/compiler/jit/kernels/xla_ops.cc

          ResourceVarsSnapshot resource_var_snapshots, int num_constant_args)
          : client_(client),
            executable_(executable),
            compilation_result_(compilation_result),
            resource_var_snapshots_(std::move(resource_var_snapshots)),
            num_constant_args_(num_constant_args) {}
    
      ExecutableClosure(ExecutableClosure&&) = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

                                 const string& node_name, int num_constant_args,
                                 int num_resource_args, Node** result) {
      NodeDef call_node;
      call_node.set_name(node_name);
      call_node.set_op(callee_name);
      AddNodeAttr(kXlaCompiledKernelAttr, true, &call_node);
      AddNodeAttr(kXlaNumConstantArgsAttr, num_constant_args, &call_node);
      AddNodeAttr(kXlaNumResourceArgsAttr, num_resource_args, &call_node);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top