Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for qint16ref (0.1 sec)

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

    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")
    HANDLE_TF_REF_TYPE(Bfloat16Ref, BFLOAT16_REF, "bfloat16ref")
    HANDLE_TF_REF_TYPE(Complex64Ref, COMPLEX64_REF, "complex64ref")
    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/tests/tf-ops.mlir

      func.return %0 : tensor<f32>
    }
    
    // CHECK-LABEL: @testAddV2WithRef
    func.func @testAddV2WithRef(%arg0: tensor<!tf_type.int16ref>, %arg1: tensor<i16>) -> tensor<i16> {
      // CHECK: tf.AddV2
      %0 = "tf.AddV2"(%arg0, %arg1) : (tensor<!tf_type.int16ref>, tensor<i16>) -> tensor<i16>
      func.return %0 : tensor<i16>
    }
    
    // CHECK-LABEL: @testRealDivWithRef
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top