Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PywrapSavedModelToStablehlo (0.45 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

    #include "tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.h"
    
    namespace py = pybind11;
    
    namespace {
    
    using mlir::tensorflow_to_stablehlo::pywrap::PywrapSavedModelToStablehlo;
    using mlir::tensorflow_to_stablehlo::pywrap::PywrapTfModuleToStablehlo;
    
    }  // namespace
    
    PYBIND11_MODULE(pywrap_tensorflow_to_stablehlo, m) {
      m.doc() = "TensorFlow to StableHLO APIs.";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.h

    //
    // Returns:
    //   An absl::StatusOr containing the serialized bytecode of the StableHLO
    //   module on success, or an error status on failure.
    absl::StatusOr<std::string> PywrapSavedModelToStablehlo(
        absl::string_view input_path,
        const std::vector<std::string>& exported_model_signatures,
        const std::vector<std::string>& tag_names,
        absl::string_view input_arg_shapes_str);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.cc

      OpPrintingFlags printing_flags;
      module.print(os, printing_flags);
    
      output->os() << result;
      output->keep();
    
      return output_filename;
    }
    
    absl::StatusOr<std::string> PywrapSavedModelToStablehlo(
        absl::string_view input_path,
        const std::vector<std::string>& exported_model_signatures,
        const std::vector<std::string>& tag_names,
        absl::string_view input_arg_shapes_str) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top