Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_SignatureDefFunctionMakeCallOp (0.41 sec)

  1. tensorflow/c/experimental/saved_model/public/signature_def_function.h

    // The caller is responsible for deleting the returned TFE_Op. If op
    // construction fails, `status` will be non-OK and the returned pointer will be
    // null.
    TF_CAPI_EXPORT extern TFE_Op* TF_SignatureDefFunctionMakeCallOp(
        TF_SignatureDefFunction* func, TFE_TensorHandle** inputs, int num_inputs,
        TF_Status* status);
    
    #ifdef __cplusplus
    }  // end extern "C"
    #endif  // __cplusplus
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/signature_def_function.cc

        TF_SignatureDefFunction* func) {
      return tensorflow::wrap(const_cast<tensorflow::SignatureDefFunctionMetadata*>(
          &tensorflow::unwrap(func)->GetFunctionMetadata()));
    }
    
    TFE_Op* TF_SignatureDefFunctionMakeCallOp(TF_SignatureDefFunction* func,
                                              TFE_TensorHandle** inputs,
                                              int num_inputs, TF_Status* status) {
      tensorflow::ImmediateOpPtr call_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      TFE_TensorHandle* input_b = TestScalarTensorHandle(ctx, 1.0f);
      compute_fn_inputs.push_back(input_a);
      compute_fn_inputs.push_back(input_b);
    
      TFE_Op* serving_default_op = TF_SignatureDefFunctionMakeCallOp(
          serving_default, compute_fn_inputs.data(), compute_fn_inputs.size(),
          status);
      EXPECT_EQ(TF_GetCode(status), TF_OK) << TF_Message(status);
    
      std::vector<TFE_TensorHandle*> compute_fn_outputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top