Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for conv_2d (0.11 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      // CHECK: %0 = "tfl.conv_2d"(%arg0, %arg1, %cst)
    }
    
    // CHECK-LABEL: fuse4DAddIntoConv2d
    func.func @fuse4DAddIntoConv2d(%arg0: tensor<256x32x32x3xf32>, %arg1: tensor<2x3x3x3xf32>) -> tensor<256x32x32x2xf32> {
      %cst = arith.constant dense<[[[[1.0, 2.0]]]]> : tensor<1x1x1x2xf32>
      %cst_0 = arith.constant dense<[1.0, 2.0]> : tensor<2xf32>
      %0 = "tfl.conv_2d"(%arg0, %arg1, %cst_0) {
        dilation_h_factor = 1 : i32,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           %[[VAL_9:.*]] = "tf.Transpose"(%[[VAL_7]], %[[VAL_8]]) : (tensor<1x256x256x1xbf16>, tensor<4xi64>) -> tensor<1x1x256x256xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-SAME:      [[ARG:%.+]]: tensor<2x12x21x7xf16>
    // CHECK:           [[CONV32:%.+]] = mhlo.convert %arg0 : (tensor<2x12x21x7xf16>) -> tensor<2x12x21x7xf32>
    // CHECK:           [[ZERO:%.+]] = mhlo.constant dense<0.000000e+00> : tensor<f32>
    // CHECK:           [[DIVIDEND:%.+]] = "mhlo.reduce_window"([[CONV32]], [[ZERO]])
    // CHECK-SAME:        window_dimensions = dense<[1, 2, 2, 1]>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (add.getType() != op.getType()) {
          add = rewriter.create<tensor::CastOp>(loc, op.getType(), add);
        }
        rewriter.replaceOp(op, {add});
        return success();
      }
    };
    
    // Conterts tf.Conv2D to mhlo.dynamic_conv.
    // TODO(disc): To recover static special case's performance with adding folding,
    // canonicalization func and removing ConvertConvOp.
    template <typename OpT, int num_spatial_dims, bool depthwise_conv = false>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type RawSockaddrL2TPIP struct {
    	Family  uint16
    	Unused  uint16
    	Addr    [4]byte /* in_addr */
    	Conn_id uint32
    	_       [4]uint8
    }
    
    type RawSockaddrL2TPIP6 struct {
    	Family   uint16
    	Unused   uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    	Conn_id  uint32
    }
    
    type RawSockaddrIUCV struct {
    	Family  uint16
    	Port    uint16
    	Addr    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top