Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for output_element_type_bitwidth (0.74 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        const auto input_element_type_bitwidth =
            input_element_type.getIntOrFloatBitWidth();
        const auto output_element_type_bitwidth =
            output_element_type.getIntOrFloatBitWidth();
    
        auto is_output_shape_valid_with_small_input_element_type_bitwidth = [&]() {
          if (output_element_type_bitwidth % input_element_type_bitwidth != 0) {
            op.emitOpError() << "output element bitwidth is not multiple "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        const int output_element_type_bitwidth =
            GetTypeBitWidth(output_element_type);
    
        if (input_element_type_bitwidth < 0 || output_element_type_bitwidth < 0) {
          // Only supports quantized type, int and float types.
          return op.emitOpError("Unsupported element type.");
        }
    
        if (input_element_type_bitwidth < output_element_type_bitwidth) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top