Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestTFToStablehloPass (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_tf_to_stablehlo_pass.cc

    using ::tensorflow::quantization::RunPassesOnModuleOp;
    
    class TestTFToStablehloPass
        : public impl::TestTFToStablehloPassBase<TestTFToStablehloPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestTFToStablehloPass)
    
     private:
      void runOnOperation() override;
    };
    
    void TestTFToStablehloPass::runOnOperation() {
      ModuleOp module_op = getOperation();
      MLIRContext* ctx = &getContext();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 17:19:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.td

        "mlir::quant::QuantizationDialect", "mlir::chlo::ChloDialect",
        "mlir::vhlo::VhloDialect", "mlir::shape::ShapeDialect",
        "mlir::quantfork::QuantizationForkDialect",
      ];
    }
    
    def TestTFToStablehloPass : Pass<"stablehlo-test-tf-to-stablehlo", "mlir::ModuleOp"> {
      let summary = "Test-only pass to test TFToStablehloPasses.";
      let description = [{
        Runs the TFToStablehloPasses.
      }];
      let dependentDialects = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top