Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for 32x32 (0.04 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    func.func @biasAdd(%arg0: tensor<1x10x10x32xf32>, %arg1: tensor<32xf32>) -> tensor<1x10x10x32xf32> {
      %0 = "tf.BiasAdd"(%arg0, %arg1) {T = "tfdtype$DT_FLOAT", data_format = "NHWC"} : (tensor<1x10x10x32xf32>, tensor<32xf32>) -> tensor<1x10x10x32xf32>
      func.return %0 : tensor<1x10x10x32xf32>
    
    // CHECK-LABEL: biasAdd
    // CHECK: tfl.add(%arg0, %arg1) <{fused_activation_function = "NONE"}> : (tensor<1x10x10x32xf32>, tensor<32xf32>) -> tensor<1x10x10x32xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    class I32VectorElementsAttr<int len> : ElementsAttrBase<
      CPred<"$_self.isa<DenseIntElementsAttr>() &&"
          "$_self.cast<DenseIntElementsAttr>().getType()."
          "getElementType().isSignlessInteger(32)">,
      "32-bit int elements attribute of shape [" # len # "]"> {
    
      let storageType = [{ DenseIntElementsAttr }];
      let returnType = [{ DenseIntElementsAttr }];
    
      let constBuilderCall = "DenseElementsAttr::get("
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      // CHECK-NOT: tf.TensorListReserve
      // CHECK: tf.BroadcastTo
      // CHECK-SAME: tensor<10x32xf32>
      %tl1 = "tf.TensorListReserve"(%arg0, %max_size) : (tensor<*xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<32xf32>>>
      func.return
    }
    
    // -----
    
    // Tests that the pass reports error on unknown maximum size.
    
    func.func @main(%arg0: tensor<i32>) -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %0 = "tf.BiasAdd"(%arg0, %arg1) {T = "tfdtype$DT_FLOAT"} : (tensor<1x32x10x32xi32>, tensor<32xi32>) -> tensor<1x32x10x32xi32>
      func.return %0 : tensor<1x32x10x32xi32>
    }
    
    // -----
    
    // CHECK-LABEL: func @biasAdd_NHWC
    func.func @biasAdd_NHWC(%arg0: tensor<1x32x10x32xi32>, %arg1: tensor<32xi32>) -> tensor<1x32x10x32xi32> {
      // CHECK: %[[ARG0_SHAPE:.+]] = shape.shape_of %arg0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm64/asm.go

    			if target.IsWindows() && r.Add() != 0 {
    				if r.Siz() == 8 {
    					val = r.Add()
    				} else if target.IsBigEndian() {
    					val = int64(uint32(val)) | int64(r.Add())<<32
    				} else {
    					val = val>>32<<32 | int64(uint32(r.Add()))
    				}
    				return val, 1, true
    			}
    		}
    	}
    
    	switch rt := r.Type(); rt {
    	case objabi.R_ADDRARM64,
    		objabi.R_ARM64_PCREL_LDST8,
    		objabi.R_ARM64_PCREL_LDST16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "$0.getType().cast<TensorType>().getElementType().isF32()">,
      "32 bit float tensor">;
    def I32ElementsVal : Constraint<CPred<
      "$0.getType().cast<TensorType>().getElementType().isInteger(32)">,
      "32 bit integer tensor">;
    
    def ConvertSingleElementAttrToFloatAttr :
      NativeCodeCall<"ConvertSingleElementAttrToFloatAttr($0)">;
    
    // Replace
    //   (float)OneHot(index, depth, on_val, off_val, axis)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/arith_test.go

    }
    
    //go:noinline
    func lrot3_ssa(w uint32) uint32 {
    	// Want to be sure that a "rotate by 32" which
    	// is really 0 | (w >> 0) == w
    	// is correctly compiled.
    	return (w << 32) | (w >> (32 - 32))
    }
    
    func testLrot(t *testing.T) {
    	wantA, wantB, wantC, wantD := uint8(0xe1), uint16(0xe001),
    		uint32(0xe0000001), uint64(0xe000000000000001)
    	a, b, c, d := lrot1_ssa(0xf, 0xf, 0xf, 0xf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___D4TOP                         = 0xC9D // 3229
    	SYS___PTOD1                         = 0xC9E // 3230
    	SYS___PTOD2                         = 0xC9F // 3231
    	SYS___PTOD4                         = 0xCA0 // 3232
    	SYS_CLEARERR_UNLOCKED               = 0xCA1 // 3233
    	SYS_FDELREC_UNLOCKED                = 0xCA2 // 3234
    	SYS_FEOF_UNLOCKED                   = 0xCA3 // 3235
    	SYS_FERROR_UNLOCKED                 = 0xCA4 // 3236
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. src/crypto/rsa/testdata/pss-vect.txt.bz2

    7d 6c 83 1c 7f 66 3e 83 3c a4 c0 97 e7 00 ce 0f b9 45 f8 8f b8 5f e8 e5 a7 73 17 25 65 b9 14 a4 71 a4 43 # RSA public exponent e: 01 00 01 # RSA private exponent d: 65 14 51 73 3b 56 de 5a c0 a6 89 a4 ae b6 e6 89 4a 69 01 4e 07 6c 88 dd 7a 66 7e ab 32 32 bb cc d2 fc 44 ba 2f a9 c3 1d b4 6f 21 ed d1 fd b2 3c 5c 12 8a 5d a5 ba b9 1e 7f 95 2b 67 75 9c 7c ff 70 54 15 ac 9f a0 90 7c 7c a6 17 8f 66 8f b9 48 d8 69 da 4c c3 b7 35 6f 40 08 df d5 44 9d 32 ee 02 d9 a4 77 eb 69 fc 29 26 6e 5d 90 70 51 23 75 a5...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 27.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/asm5.go

    	a2       int8
    	a3       uint8
    	type_    uint8
    	size     int8
    	param    int16
    	flag     int8
    	pcrelsiz uint8
    	scond    uint8 // optional flags accepted by the instruction
    }
    
    type Opcross [32][2][32]uint8
    
    const (
    	LFROM  = 1 << 0
    	LTO    = 1 << 1
    	LPOOL  = 1 << 2
    	LPCREL = 1 << 3
    )
    
    var optab = []Optab{
    	/* struct Optab:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top