Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MIN_VALUE (0.08 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      quant::UniformQuantizedType GetFixedOutputRange(
          bool is_signed, int bit_width) {
        auto result_type = getOutput().getType();
        // central_value = min_value / 2 + (max_value - 1) / 2 + 1
        // zero_point = central_value
        // scale = 1. / (central_value - min_value)
        return quant::GetFixedOutputRange(is_signed, bit_width, result_type,
            /*scale=*/1.0 / (1<<(bit_width-1)), /*zero_point=*/0);
      }
      }];
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top