Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateXlaCallModuleSerializationPass (0.37 sec)

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

      // duplicate constants. Add canonicalizer to deduplicate.
      pm.addNestedPass<func::FuncOp>(mlir::createCanonicalizerPass());
      pm.addPass(TF::CreateXlaCallModuleSerializationPass());
    }
    
    void AddProcessNchwTensorPasses(OpPassManager& pm) {
      // For models with NCHW convolution format. This pass is required because
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

          return signalPassFailure();
        }
    
        RemoveSerializedStablehloFunctions(module);
      }
    };
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateXlaCallModuleSerializationPass() {
      return std::make_unique<XlaCallModuleSerializationPass>();
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that serializes StableHLO functions referenced by
    // `tf.XlaCallModule` from the top-level module to `tf.XlaCallModule`'s
    // `module` attribute.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaCallModuleSerializationPass();
    
    }  // namespace TF
    
    namespace tf_executor {
    
    // Creates a pass to chain control outputs of while loop body.
    std::unique_ptr<OperationPass<ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        from the top-level module.
      }];
    
      let dependentDialects = [
        "stablehlo::StablehloDialect",
        "vhlo::VhloDialect",
      ];
    
      let constructor = "TF::CreateXlaCallModuleSerializationPass()";
    }
    
    def ColocateTPUCopyWithDynamicShapePass : Pass<"tf-colocate-tpu-copy-with-dynamic-shape", "ModuleOp"> {
      let summary = "Adjusts the device annotation of TPUCopyWithDynamicShape ops";
    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