Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for 256xf16 (0.18 sec)

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

    // CHECK-LABEL: func @floordiv_f16_broadcast
    func.func @floordiv_f16_broadcast(%arg0: tensor<2x3xf16>, %arg1: tensor<3xf16>) -> tensor<2x3xf16> {
      // CHECK-NEXT:  chlo.broadcast_divide
      // CHECK-NEXT:  mhlo.floor
      // CHECK-NEXT:  return
      %0 = "tf.FloorDiv"(%arg0, %arg1) : (tensor<2x3xf16>, tensor<3xf16>) -> tensor<2x3xf16>
      func.return %0: tensor<2x3xf16>
    }
    
    // -----
    
    // CHECK-LABEL: func @floordiv_dynamic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // -----
    
    func.func @testInvalidSelect(%arg0: tensor<3xi1>, %arg1: tensor<2x3xf16>, %arg2: tensor<2x3xf16>) -> tensor<2x3xf16> {
      // expected-error @+1 {{requires that, when pred is a vector, the shape matches the first dimension of t and e}}
      %0 = "tf.Select"(%arg0, %arg1, %arg2) : (tensor<3xi1>, tensor<2x3xf16>, tensor<2x3xf16>) -> tensor<2x3xf16>
      func.return %0: tensor<2x3xf16>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %cst_1 = arith.constant dense<1.5> : tensor<256xf32>
      %cst_2 = arith.constant dense<2.0> : tensor<1x1x1x256xf32>
      %0 = "tfl.conv_2d"(%arg0, %cst_0, %cst_1) {dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "SAME", stride_h = 1 : i32, stride_w = 1 : i32} : (tensor<1x8x8x207xf32>, tensor<256x3x3x207xf32>, tensor<256xf32>) -> tensor<1x8x8x256xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_amd64.s

    #define m(off)	(32*4 + off)(SP)
    #define zsqr(off) (32*5 + off)(SP)
    #define tmp(off)  (32*6 + off)(SP)
    #define rptr	  (32*7)(SP)
    
    //func p256PointDoubleAsm(res, in *P256Point)
    TEXT ·p256PointDoubleAsm(SB),NOSPLIT,$256-16
    	// Move input to stack in order to free registers
    	MOVQ res+0(FP), AX
    	MOVQ in+8(FP), BX
    
    	MOVOU (16*0)(BX), X0
    	MOVOU (16*1)(BX), X1
    	MOVOU (16*2)(BX), X2
    	MOVOU (16*3)(BX), X3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            input_shape=(1, 16, 16, 8),
            # Uses large filter to exceed the constant size threshold of 64KiB
            # (specified by `kDefaultConstantSizeThresholdInBytes`) for unfreezing.
            filter_shape=(256, 8, 8, 16),
            use_variable=True,
        )
    
        signature_keys = [signature_key]
    
        quantization_options = quant_opts_pb2.QuantizationOptions(
            quantization_method=quant_opts_pb2.QuantizationMethod(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top