Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Int4 (0.07 sec)

  1. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

          auto i4Values =
              tflite::UnpackDenseInt4IntoInt8(buffer, shaped_type.getNumElements());
          // Use `getFromRawBuffer()` instead of `get()` to bypass a templated size
          // check which doesn't work with int4 because int4_t doesn't exist.
          return mlir::ElementsAttr(DenseElementsAttr::getFromRawBuffer(
              shaped_type, ArrayRef<char>(i4Values)));
        }
        case 8: {
          return mlir::ElementsAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        case DT_FLOAT8_E4M3FN:
          ConvertFloat8ElementsAttr<tsl::float8_e4m3fn>(
              dense_attr, output->mutable_float8_val());
          break;
        case tensorflow::DT_INT4:
          ConvertIntElementsAttr<int, tsl::int4>(dense_attr,
                                                 output->mutable_int_val(),
                                                 output->mutable_tensor_content());
          break;
        case tensorflow::DT_UINT4:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // to change. Do not implement custom kernels using resource & variant types
      // now.
      RESOURCE = 13,
      VARIANT = 14,
      UINT32 = 15,
      UINT16 = 16,
      INT4 = 17,
      BFLOAT16 = 18,
    }
    
    // Custom quantization parameters for experimenting with new quantization
    // techniques.
    table CustomQuantization {
      custom:[ubyte] (force_align: 16);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        "STRING",
        "BOOL",
        "INT16",
        "COMPLEX64",
        "INT8",
        "FLOAT64",
        "COMPLEX128",
        "UINT64",
        "RESOURCE",
        "VARIANT",
        "UINT32",
        "UINT16",
        "INT4",
        "BFLOAT16",
        nullptr
      };
      return names;
    }
    
    inline const char *EnumNameTensorType(TensorType e) {
      if (::flatbuffers::IsOutRange(e, TensorType_FLOAT32, TensorType_BFLOAT16)) return "";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  5. src/compress/flate/testdata/huffman-rand-max.in

    �K{�>���R�QZ�yNT4]�I�t%r���Y2=�Zx����A�!ښHr]���s๠��U�z����Y��Q�%ayAk����D�az�m�3"���l����p�?�J�-(���<�{2ݔK��i�j[��bI�Z�^Q��gg��;w�ߣC3ā��#!4i`����숭�_J_���f��"�q����9;!��&m��h4�;�VD^�|q�V�[�n�8Љ2u�T��^-��b{�b�z"n2�����qE��1�wP�����...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
Back to top