Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SavedModelToMlirModuleOp (0.36 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

    using ::tensorflow::SavedModelBundle;
    using ::tensorflow::SavedModelSignatureDefsToMlirImport;
    using ::tensorflow::quantization::PreprocessAndFreezeGraph;
    
    absl::StatusOr<ImportedMlirModuleOp> SavedModelToMlirModuleOp(
        const absl::string_view saved_model_path,
        const std::unordered_set<std::string>& tags,
        const std::vector<std::string>& signature_keys,
        MLIRContext& ctx ABSL_ATTRIBUTE_LIFETIME_BOUND) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

    // the returned `ModuleOp`, thus marked with the lifetime bound attribute.
    // TODO: b/329206105 - Add unit tests after decomposing preprocessing passes.
    absl::StatusOr<ImportedMlirModuleOp> SavedModelToMlirModuleOp(
        absl::string_view saved_model_path,
        const std::unordered_set<std::string>& tags,
        const std::vector<std::string>& signature_keys,
        MLIRContext& ctx ABSL_ATTRIBUTE_LIFETIME_BOUND);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.cc

        }
    
        return quant::stablehlo::ImportedMlirModuleOp(std::move(module), nullptr);
      }
    
      std::unordered_set<std::string> tag_set(tag_names.begin(), tag_names.end());
      return quant::stablehlo::SavedModelToMlirModuleOp(
          input_path, tag_set, exported_model_signatures, *context);
    }
    
    // Convert an TF module to a StableHLO module
    absl::StatusOr<OwningOpRef<ModuleOp>> ConvertTFToStablehlo(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top