Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RunExportPasses (0.13 sec)

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

          /*debug_name=*/
          absl::StrCat(debug_name_prefix, kExportStepSuffix)};
    
      TF_ASSIGN_OR_RETURN(const SmallVector<AssetFileDef> asset_file_defs,
                          RunExportPasses(export_opts, ctx, module_op));
    
      return ConvertMlirModuleToExportedModel(
          module_op, checkpoint_dir, function_aliases,
          {asset_file_defs.begin(), asset_file_defs.end()});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    // upon model loading.
    // TODO: b/329206105 - Add unit tests after decomposing post processing passes.
    absl::StatusOr<SmallVector<::tensorflow::AssetFileDef>> RunExportPasses(
        const ExportOptions& export_opts, MLIRContext& ctx, ModuleOp module_op);
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

          /*unfreeze_constants=*/false, checkpoint_dir,
          /*debug_name=*/absl::StrCat(kName, kExportStepSuffix)};
    
      TF_ASSIGN_OR_RETURN(const SmallVector<AssetFileDef> asset_file_defs,
                          RunExportPasses(export_opts, *ctx_, *cloned_module_ref));
    
      TF_ASSIGN_OR_RETURN(ExportedModel exported_model,
                          ConvertMlirModuleToExportedModel(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

                        /*debug_name=*/absl::StrCat(step_name, kExportStepSuffix)};
    
      TF_ASSIGN_OR_RETURN(const llvm::SmallVector<AssetFileDef> asset_file_defs,
                          RunExportPasses(export_opts, *ctx, module_op));
    
      return ConvertMlirModuleToExportedModel(
          module_op, checkpoint_dir, function_aliases,
          {asset_file_defs.begin(), asset_file_defs.end()});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top