Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for FunctionLibraryRuntime (0.29 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.h

    // all of the nodes that have ref variables as input or output.
    absl::StatusOr<absl::flat_hash_set<Node*>> GetNodesRelatedToRefVariables(
        const Graph& graph, FunctionLibraryRuntime* lib_runtime);
    
    // Deterministically serialized the graph to a byte string.
    absl::StatusOr<std::string> SerializeGraphDeterministic(const Graph& graph);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_kernel_creator_test.cc

            TF_GRAPH_DEF_VERSION, lib_def_.get(), opts,
            /*default_thread_pool=*/nullptr, /*cluster_flr=*/nullptr);
        flr_ = pflr_->GetFLR("/job:localhost/replica:0/task:0/cpu:0");
      }
    
      FunctionLibraryRuntime* flr_;
      std::unique_ptr<DeviceMgr> device_mgr_;
      std::unique_ptr<FunctionLibraryDefinition> lib_def_;
      std::unique_ptr<ProcessFunctionLibraryRuntime> pflr_;
    
      std::unique_ptr<OpKernel> kernel_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 01:39:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/kernels/xla_ops.h

    // It takes vectors of constant and resource arguments explicitly.
    // It does not have corresponding OpDef because it is never present
    // in the GraphDef.
    // Currently, it is used by eager runtime. FunctionLibraryRuntime creates
    // this kernel when asked to create a kernel for an XLA-compiled function.
    //
    // `has_ref_vars`: whether the input computation can have reference variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top