Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uint16ref (0.41 sec)

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

    HANDLE_TF_REF_TYPE(DoubleRef, DOUBLE_REF, "f64ref")
    HANDLE_TF_REF_TYPE(Uint4Ref, UINT4_REF, "uint4ref")
    HANDLE_TF_REF_TYPE(Int4Ref, INT4_REF, "int4ref")
    HANDLE_TF_REF_TYPE(Uint8Ref, UINT8_REF, "uint8ref")
    HANDLE_TF_REF_TYPE(Int8Ref, INT8_REF, "int8ref")
    HANDLE_TF_REF_TYPE(Uint16Ref, UINT16_REF, "uint16ref")
    HANDLE_TF_REF_TYPE(Int16Ref, INT16_REF, "int16ref")
    HANDLE_TF_REF_TYPE(Uint32Ref, UINT32_REF, "uint32ref")
    HANDLE_TF_REF_TYPE(Int32Ref, INT32_REF, "int32ref")
    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

    def TF_Uint64Ref : TF_TensorFlowType<"Uint64Ref", "ui64ref">;
    
    // 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. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func unpackUint16(msg []byte, off int) (uint16, int, error) {
    	if off+uint16Len > len(msg) {
    		return 0, off, errBaseLen
    	}
    	return uint16(msg[off])<<8 | uint16(msg[off+1]), off + uint16Len, nil
    }
    
    func skipUint16(msg []byte, off int) (int, error) {
    	if off+uint16Len > len(msg) {
    		return off, errBaseLen
    	}
    	return off + uint16Len, nil
    }
    
    // packType appends the wire format of field to msg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. 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)
  5. 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