Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExecuteFunction (0.15 sec)

  1. tensorflow/cc/experimental/libtf/function.cc

    using tensorflow::AbstractOperationPtr;
    using tensorflow::AbstractTensorHandle;
    using tensorflow::Status;
    using tensorflow::StatusOr;
    
    // TODO(srbs): Move this to unified execution API.
    tensorflow::Status ExecuteFunction(
        AbstractFunctionPtr trace, AbstractContext* ctx,
        absl::Span<tensorflow::AbstractTensorHandle* const> inputs,
        absl::Span<tensorflow::AbstractTensorHandle*> outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

    }
    
    void BM_ExecuteFunction(::testing::benchmark::State& state) {
      const int async = state.range(0);
      state.SetLabel(async ? "ExecuteFunctionAsync" : "ExecuteFunction");
      TF_Status* status = TF_NewStatus();
      TFE_ContextOptions* opts = TFE_NewContextOptions();
      TFE_ContextOptionsSetAsync(opts, static_cast<unsigned char>(async));
      TFE_Context* ctx = TFE_NewContext(opts, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top