Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsAllowListedOp (0.16 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

                                llvm::cl::desc("The mode of TF Quantization."),
                                llvm::cl::init("")};
    
      // Checks if the operation is allowlisted in the current mode.
      bool IsAllowListedOp(Operation *op) {
        std::string op_name = op->getName().getStringRef().str();
        if (IsAlwaysAllowlistedOp(op) || IsTfFakeQuantOp(op)) {
          return true;
        } else if (mode_ == kDefaultMode) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top