Fix test.
This commit is contained in:
parent
1784ec2314
commit
050d7d277d
|
@ -11,19 +11,15 @@ func @test_default_transpose(%arg0 : tensor<5x5x1x32xf32>) -> tensor<*xf32> {
|
||||||
// CHECK: return [[RES]] : tensor<32x1x5x5xf32>
|
// CHECK: return [[RES]] : tensor<32x1x5x5xf32>
|
||||||
}
|
}
|
||||||
|
|
||||||
// CHECK-LABEL: test_default_transpose
|
|
||||||
// CHECK: [[RES:%.+]] = "onnx.Transpose"(%arg0) : (tensor<5x5x1x32xf32>) -> tensor<32x1x5x5xf32>
|
|
||||||
// CHECK: return [[RES]] : tensor<32x1x5x5xf32>
|
|
||||||
|
|
||||||
/// Test shape inference for transposition when perm attribute is specified.
|
/// Test shape inference for transposition when perm attribute is specified.
|
||||||
func @test_transpose(%arg0 : tensor<5x5x1x32xf32>) -> tensor<*xf32> {
|
func @test_transpose(%arg0 : tensor<5x5x1x32xf32>) -> tensor<*xf32> {
|
||||||
%0 = "onnx.Transpose"(%arg0) {perm = [2, 0, 3, 1]} : (tensor<5x5x1x32xf32>) -> tensor<*xf32>
|
%0 = "onnx.Transpose"(%arg0) {perm = [2, 0, 3, 1]} : (tensor<5x5x1x32xf32>) -> tensor<*xf32>
|
||||||
"std.return"(%0) : (tensor<*xf32>) -> ()
|
"std.return"(%0) : (tensor<*xf32>) -> ()
|
||||||
}
|
|
||||||
|
|
||||||
// CHECK-LABEL: test_transpose
|
// CHECK-LABEL: test_transpose
|
||||||
// CHECK: [[RES_ATTR:%.+]] = "onnx.Transpose"(%arg0) {perm = [2, 0, 3, 1]} : (tensor<5x5x1x32xf32>) -> tensor<1x5x32x5xf32>
|
// CHECK: [[RES_ATTR:%.+]] = "onnx.Transpose"(%arg0) {perm = [2, 0, 3, 1]} : (tensor<5x5x1x32xf32>) -> tensor<1x5x32x5xf32>
|
||||||
// CHECK: return [[RES_ATTR]] : tensor<1x5x32x5xf32>
|
// CHECK: return [[RES_ATTR]] : tensor<1x5x32x5xf32>
|
||||||
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
/// Test the shape inferencing scheme for the matmul operation.
|
/// Test the shape inferencing scheme for the matmul operation.
|
||||||
|
|
Loading…
Reference in New Issue