Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateFallbackToFlexOpsPass (0.31 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateLegalizeTFToQuantPass();
    
    // Fallbacks ops that are not supported by TF Quantization to TFLite Flex ops.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateFallbackToFlexOpsPass(
        const std::string &mode = "DEFAULT");
    
    }  // namespace TF
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 08 00:46:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

      });
    }
    }  // namespace internal
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateFallbackToFlexOpsPass(
        const std::string &mode) {
      return std::make_unique<internal::FallbackToFlexOps>(mode);
    }
    
    static PassRegistration<internal::FallbackToFlexOps> pass([] {
      return CreateFallbackToFlexOpsPass(/*mode=*/internal::kDefaultMode);
    });
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // conversion passes.
      if (!toco_flags.tf_quantization_mode().empty()) {
        pass_manager->addNestedPass<mlir::func::FuncOp>(
            mlir::TF::CreateFallbackToFlexOpsPass(
                toco_flags.tf_quantization_mode()));
      }
      // The below passes only make sense if Builtin TFLite ops are enabled
      // for emission.
      if (pass_config.emit_builtin_tflite_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top