Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OperationPass (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // Creates an instance of the TensorFlow Lite dialect Optimize pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizePass(
        bool enable_canonicalization, bool disable_fuse_mul_and_fc) {
      return std::make_unique<OptimizePass>(enable_canonicalization,
                                            disable_fuse_mul_and_fc);
    }
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizePass() {
      return std::make_unique<OptimizePass>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                               "quantized types to tflite ops.";
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateUniformQuantizedStableHloToTflPass() {
      return std::make_unique<UniformQuantizedStableHloToTflPass>();
    }
    
    static PassRegistration<UniformQuantizedStableHloToTflPass> pass;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                ConvertLoweredCumProdOp, ConvertGetDimensionSizeOp,
                ConvertDynamicIotaOp, ConvertRealDynamicSliceOp>(context);
      populateWithGenerated(*patterns);
    }
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeHloToTfPass() {
      return std::make_unique<LegalizeHloToTf>();
    }
    
    static PassRegistration<LegalizeHloToTf> pass;
    
    }  // end namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top