Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for quint8ref (0.35 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_types.def

    HANDLE_TF_REF_TYPE(Int64Ref, INT64_REF, "int64ref")
    HANDLE_TF_REF_TYPE(StringRef, STRING_REF, "stringref")
    HANDLE_TF_REF_TYPE(BoolRef, BOOL_REF, "boolref")
    HANDLE_TF_REF_TYPE(Quint8Ref, QUINT8_REF, "quint8ref")
    HANDLE_TF_REF_TYPE(Qint8Ref, QINT8_REF, "qint8ref")
    HANDLE_TF_REF_TYPE(Quint16Ref, QUINT16_REF, "quint16ref")
    HANDLE_TF_REF_TYPE(Qint16Ref, QINT16_REF, "qint16ref")
    HANDLE_TF_REF_TYPE(Qint32Ref, QINT32_REF, "qint32ref")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 09 03:12:53 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // Quantized reference types
    def TF_Qint8Ref : TF_TensorFlowType<"Qint8Ref", "qint8ref">;
    def TF_Qint16Ref : TF_TensorFlowType<"Qint16Ref", "qint16ref">;
    def TF_Qint32Ref : TF_TensorFlowType<"Qint32Ref", "qint32ref">;
    def TF_Quint8Ref : TF_TensorFlowType<"Quint8Ref", "quint8ref">;
    def TF_Quint16Ref : TF_TensorFlowType<"Quint16Ref", "quint16ref">;
    
    // Other reference types
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    the standard dialect. The extra defined types are specific to TensorFlow: `QINT`
    types like !tf_type.qint8 (etc), `QUINT` types like !tf_type.quint8, all of the
    `REF` types like !tf_type.uint8ref, as well as !tf_type.string,
    !tf_type.resource, and !tf_type.variant which correspond to the tensorflow types
    of the same name.
    
    ### Example:
    
    Below is an example of a function operating on the TensorFlow dialect:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
Back to top