Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 719 for Dialect (2.09 sec)

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

    #include <string_view>
    #include <utility>
    
    #include "absl/strings/str_cat.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

    #ifndef TFL_OP_INTERFACES
    #define TFL_OP_INTERFACES
    
    include "mlir/IR/OpBase.td"
    
    def TFL_Dialect : Dialect {
      let name = "tfl";
    
      let description = [{
        The TensorFlow Lite dialect.
    
        This dialect maps to TensorFlow Lite operations.
    
        Invariants:
    
        * All values are of Tensor type (in particular, scalars are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/ir/QuantOpsBase.td

    //===----------------------------------------------------------------------===//
    //
    // Predicates for types in the Quantization dialect.
    //
    //===----------------------------------------------------------------------===//
    
    #ifndef QUANT_FORK_BASE
    #define QUANT_FORK_BASE
    
    include "mlir/IR/OpBase.td"
    
    def QuantizationFork_Dialect : Dialect {
      let name = "quantfork";
      let cppNamespace = "::mlir::quantfork";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/ir/QuantOpsBase.td

    //===----------------------------------------------------------------------===//
    //
    // Predicates for types in the Quantization dialect.
    //
    //===----------------------------------------------------------------------===//
    
    #ifndef QUANTIZATION_BASE
    #define QUANTIZATION_BASE
    
    include "mlir/IR/OpBase.td"
    
    def Quant_Dialect : Dialect {
      let name = "quantization";
      let cppNamespace = "::mlir::quant::ir";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_pre_calibration_component.cc

    #include "absl/status/statusor.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project  // IWYU pragma: keep
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project  // IWYU pragma: keep
    #include "mlir/Support/TypeID.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo  // IWYU pragma: keep
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 21:41:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      if (pass_config.enable_composite_direct_lowering) {
        pass_manager.addPass(mlir::odml::CreateCompositeLoweringPass());
      }
    
      // TFLite dialect passes.
      if (!pass_config.disable_hlo_to_tfl_conversion) {
        pass_manager.addPass(mlir::odml::CreateLegalizeHloToTfLitePass());
      }
      // TF dialect passes
      pass_manager.addPass(mlir::odml::CreateLegalizeHloToTfPass());
    
      // folds tf.BroadcastTo ops with subsequent ops if they have built in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    CreateHoistReplicateInvariantResourceWritesPass();
    
    // Transforms functional control flow operations in the TensorFlow dialect to
    // MLIR Control Flow Graph (CFG) form.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTFFunctionalControlFlowToCFG();
    
    // Transforms functional control flow operations in the TensorFlow dialect to
    // their region based counterparts.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFFunctionalControlFlowToRegions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.cc

    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.cc.inc"
    
    namespace mlir {
    namespace quant {
    
    void RegisterOpsHook(TF::TensorFlowDialect &dialect) {
      dialect.addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.cc.inc"
          >();
    }
    
    void RegisterOps() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 24 12:48:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/constant_utils.h

    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_UTILS_CONSTANT_UTILS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_UTILS_CONSTANT_UTILS_H_
    
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 06:24:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_TRANSFORMS_LIFT_TFLITE_FLEX_OPS_H_
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace TFL {
    
    // Creates an instance of the lift TFLite Flex ops pass that lifts TFLite Flex
    // ops into TF dialect operations.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLiftTfliteFlexOpsPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 13 18:29:12 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top