Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_ConcreteFunctionGetMetadata (0.35 sec)

  1. tensorflow/cc/saved_model/experimental/public/concrete_function.h

        return reinterpret_cast<TF_ConcreteFunction*>(p);
      }
    };
    
    inline const FunctionMetadata* ConcreteFunction::GetFunctionMetadata() {
      return FunctionMetadata::wrap(TF_ConcreteFunctionGetMetadata(unwrap(this)));
    }
    
    }  // namespace cc
    }  // namespace experimental
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/concrete_function.cc

    #include "tensorflow/c/experimental/saved_model/internal/function_metadata_type.h"
    #include "tensorflow/c/tf_status_internal.h"
    #include "tensorflow/core/platform/status.h"
    
    extern "C" {
    
    TF_FunctionMetadata* TF_ConcreteFunctionGetMetadata(TF_ConcreteFunction* func) {
      return tensorflow::wrap(const_cast<tensorflow::FunctionMetadata*>(
          &tensorflow::unwrap(func)->GetFunctionMetadata()));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 06:55:27 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/public/concrete_function.h

    // Returns FunctionMetadata associated with `func`. Metadata's lifetime is
    // bound to `func`, which is bound to the TF_SavedModel it was loaded from.
    TF_CAPI_EXPORT extern TF_FunctionMetadata* TF_ConcreteFunctionGetMetadata(
        TF_ConcreteFunction* func);
    
    // Returns a TFE_Op suitable for executing this function. Caller must provide
    // all function inputs in `inputs`, and must not add any additional inputs on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 06:55:27 UTC 2020
    - 2.7K bytes
    - Viewed (0)
Back to top