Skip to content

Commit 67957f6

Browse files
committed
Update
[ghstack-poisoned]
1 parent ed01507 commit 67957f6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

kernels/test/op_flip_test.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,12 @@ class OpFlipOutTest : public ::testing::Test {
3838
void test_1d_dtype() {
3939
TensorFactory<DTYPE> tf;
4040

41-
Tensor input =
42-
tf.make({4, 1, 3}, {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12});
41+
Tensor input = tf.make({4, 1, 3}, {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12});
4342
int64_t dims_data[1] = {-1};
4443
IntArrayRef dims = IntArrayRef(dims_data, 1);
4544
Tensor out = tf.zeros({4, 1, 3});
4645
Tensor out_expected =
47-
tf.make({4, 1, 3}, {3, 2, 1, 6, 5, 4, 9, 8, 7, 12, 11, 10});
46+
tf.make({4, 1, 3}, {3, 2, 1, 6, 5, 4, 9, 8, 7, 12, 11, 10});
4847
op_flip_out(input, dims, out);
4948
EXPECT_TENSOR_CLOSE(out, out_expected);
5049
}

0 commit comments

Comments
 (0)