Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for num_constant_args_ (0.19 sec)

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

        return resource_var_snapshots_;
      }
      int num_constant_args() const { return num_constant_args_; }
    
     private:
      ClientType* client_;
      ExecutableType* executable_;
      const XlaCompiler::CompilationResult* compilation_result_;
      ResourceVarsSnapshot resource_var_snapshots_;
      int num_constant_args_;
    
      ExecutableClosure(const ExecutableClosure&) = delete;
    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