Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XlaCallModuleDeserializationPass (0.42 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      op->setAttr(kStablehloEntryFunctionAttrName, SymbolRefAttr::get(*main_func));
    
      return success();
    }
    
    class XlaCallModuleDeserializationPass
        : public impl::XlaCallModuleDeserializationPassBase<
              XlaCallModuleDeserializationPass> {
     public:
      void getDependentDialects(mlir::DialectRegistry &registry) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/convert_xla_call_module_op_to_bfloat16.cc

        const StringRef serialized_stablehlo_module) {
      // StableHLO module is empty often because the XlaCallModuleOp is already
      // deserialized, e.g. after invoking XlaCallModuleDeserializationPass. We
      // don't handle this situation.
      if (serialized_stablehlo_module.empty()) {
        return absl::InvalidArgumentError("StableHLO module is empty.");
      }
    
      MLIRContext context;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    //===----------------------------------------------------------------------===//
    // XlaCallModule
    //===----------------------------------------------------------------------===//
    
    def XlaCallModuleDeserializationPass
        : Pass<"tf-xla-call-module-deserialization", "ModuleOp"> {
      let summary = "Deserializes StableHLO functions embedded in `tf.XlaCallModule` to top level module";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top