Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_DeleteAbstractFunction (0.21 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_test.cc

      TF_DeleteAbstractOp(fn_op);
      TF_DeleteAbstractTensor(input_t);
      TF_DeleteAbstractTensor(final_result);
      TF_DeleteAbstractTensor(placeholder_t);
      TF_DeleteTensor(f_t);
      TF_DeleteAbstractFunction(func);
    
      TF_DeleteExecutionContext(eager_execution_ctx);
    }
    
    // Graph Tracing for MatMul
    TEST_P(UnifiedCAPI, TestBasicGraphMatMul) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_unified_experimental.h

    // call.
    TF_AbstractFunction* TF_FinalizeFunction(TF_ExecutionContext* ctx,
                                             TF_OutputList*, TF_Status*);
    
    void TF_DeleteAbstractFunction(TF_AbstractFunction*);
    
    // Register the function with the given context. This is particularly useful for
    // making a function available to an eager context.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sun Oct 24 11:27:00 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_unified_experimental.cc

                                    unwrap(o)->outputs.data()),
                                unwrap(o)->outputs.size()),
                 &num_outputs));
    }
    
    void TF_DeleteAbstractFunction(TF_AbstractFunction* func) {
      unwrap(func)->Unref();
    }
    
    void TF_ExecutionContextRegisterFunction(TF_ExecutionContext* ctx,
                                             TF_AbstractFunction* func,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top