Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for PassRegistration (0.23 sec)

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

          return signalPassFailure();
        }
      }
    };
    
    std::unique_ptr<Pass> createOptimizePass() {
      return std::make_unique<OptimizePass>();
    }
    
    static PassRegistration<OptimizePass> pass;
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        return sym_name.starts_with(kQuantizedFuncPrefix) ||
               sym_name.starts_with(kCompositeFuncPrefix);
      }
    
      ModuleOp module_;
      SymbolTable symbol_table_;
    };
    
    static PassRegistration<QuantizeCompositeFunctionsPass> pass;
    
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.inc"
    
    void QuantizeCompositeFunctionsPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateReplaceCastHacksWithTFXLAOpsPass() {
      return std::make_unique<ReplaceCastHacksWithTFXLAOpsPass>();
    }
    
    static PassRegistration<ReplaceCastHacksWithTFXLAOpsPass> pass;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateComposeUniformQuantizedTypePass() {
      return std::make_unique<ComposeUniformQuantizedTypePass>();
    }
    
    static PassRegistration<ComposeUniformQuantizedTypePass> pass;
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

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

      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