Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_SignatureDefFunctionMetadataArgs (0.28 sec)

  1. tensorflow/c/experimental/saved_model/internal/signature_def_function_metadata.cc

    #include "tensorflow/c/experimental/saved_model/internal/signature_def_param_list_type.h"
    
    extern "C" {
    
    extern const TF_SignatureDefParamList* TF_SignatureDefFunctionMetadataArgs(
        const TF_SignatureDefFunctionMetadata* list) {
      return tensorflow::wrap(&tensorflow::unwrap(list)->arguments());
    }
    
    extern const TF_SignatureDefParamList* TF_SignatureDefFunctionMetadataReturns(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h

    // Retrieves the arguments of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern const TF_SignatureDefParamList*
    TF_SignatureDefFunctionMetadataArgs(
        const TF_SignatureDefFunctionMetadata* list);
    
    // Retrieves the returns of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top