Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 32x32 (0.22 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %4 = "tfl.minimum"(%0, %cst) : (tensor<32xf32>, tensor<32xf32>) -> tensor<32xf32>
      %5 = "tfl.minimum"(%1, %cst) : (tensor<32xf32>, tensor<32xf32>) -> tensor<32xf32>
      %6 = "tfl.minimum"(%2, %cst) : (tensor<32xf32>, tensor<32xf32>) -> tensor<32xf32>
      %7 = "tfl.minimum"(%3, %cst) : (tensor<32xf32>, tensor<32xf32>) -> tensor<32xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-SAME: (%[[ARG_0:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_1:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_2:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_3:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_4:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    		new := uint64(seed+i)<<32 | uint64(seed+i)<<32>>32
    		old := uint64(addr.Swap(int64(new)))
    		if old>>32 != old<<32>>32 {
    			panic(fmt.Sprintf("SwapInt64 is not atomic: %v", old))
    		}
    	}
    }
    
    func hammerSwapUint64(addr *uint64, count int) {
    	seed := int(uintptr(unsafe.Pointer(&count)))
    	for i := 0; i < count; i++ {
    		new := uint64(seed+i)<<32 | uint64(seed+i)<<32>>32
    		old := SwapUint64(addr, new)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. 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)
Back to top