Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for numeric_verify (0.49 sec)

  1. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

    // DEBUG: %[[f_split:.*]]:2 = "tfl.split"
    // DEBUG: %[[q_split:.*]]:2 = "tfl.split"
    // DEBUG: "tfl.NumericVerify"(%[[q_split]]#1, %[[f_split]]#1) <{log_if_failed = true, tolerance = 5.000000e+00 : f32}>
    // DEBUG: "tfl.NumericVerify"(%[[q_split]]#0, %[[f_split]]#0) <{log_if_failed = true, tolerance = 5.000000e+00 : f32}>
    }
    
    // DEBUG-LABEL: NotQuantizePow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

            return 16;
          case tensorflow::DT_INT32:
          case tensorflow::DT_QINT32:
            return 32;
          default:
            return 0;
        }
      }
    
      // Whether to add the NumericVerify ops to verify numbers before and after
      // quantization.
      bool verify_numeric = false;
      // Whether to add verification for layer by layer, or on whole model. When
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                return failure();
              }
            }
          }
    
          // An op with float inputs and outputs are expected when it's used by a
          // NumericVerify op. Skip this op.
          if (enable_verify && UsedBy<VerifierT>(quantizing_op)) {
            continue;
          }
    
          bool is_operand_or_result_modified = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top