Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 4x128x32xf32 (0.28 sec)

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

    // CHECK: return [[MUL1]]
    }
    
    func.func @batchmatmul2fullyconnected(%arg0: tensor<4x128x2xf32>) -> (tensor<4x128x1xf32>) {
      %0 = "tf.Const"() {value = dense<[[1.0], [2.0]]> : tensor<2x1xf32>} : () -> tensor<2x1xf32>
      %1 = "tf.BatchMatMulV2"(%arg0, %0) : (tensor<4x128x2xf32>, tensor<2x1xf32>) -> tensor<4x128x1xf32>
      func.return %1 : tensor<4x128x1xf32>
    
      // CHECK-LABEL: batchmatmul2fullyconnected
    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/optimize.cc

    // does not alter the last dimension and it restores the batch dimensions
    // collapsed by the FullyConnected op due to `keep_num_dims=false`. For example,
    //
    //   // %input: tensor<4x16x32xf32>
    //   %fc = tfl.fully_connected(%input, %filter, %bias)
    //           {keep_num_dims = false, weights_format = "DEFAULT"}
    //   %shape = arith.constant dense<[4, 16, 32]> : tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top