Fixed test names.

master
shugeo 2019-10-02 19:05:26 +03:00
parent f3e42173ef
commit 75ad3c8153
1 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ TEST_F(DeclarableOpsTests15, Test_AdjustContrast_4) {
ASSERT_TRUE(e.equalsTo(out)); ASSERT_TRUE(e.equalsTo(out));
delete result; delete result;
} }
TEST_F(DeclarableOpsTests15, Test_BinCast_1) { TEST_F(DeclarableOpsTests15, Test_BitCast_1) {
auto x = NDArrayFactory::create<float>('c', {2, 2, 2}); auto x = NDArrayFactory::create<float>('c', {2, 2, 2});
auto e = NDArrayFactory::create<double>('c', {2, 2}, {2., 512., 8192., 131072.032 }); auto e = NDArrayFactory::create<double>('c', {2, 2}, {2., 512., 8192., 131072.032 });
x.linspace(1.); x.linspace(1.);
@ -241,7 +241,7 @@ TEST_F(DeclarableOpsTests15, Test_BinCast_1) {
delete result; delete result;
} }
TEST_F(DeclarableOpsTests15, Test_BinCast_2) { TEST_F(DeclarableOpsTests15, Test_BitCast_2) {
auto x = NDArrayFactory::create<float>('c', {2, 4}); auto x = NDArrayFactory::create<float>('c', {2, 4});
auto e = NDArrayFactory::create<float16>('c', {2, 4, 2}, {0, 1.875, 0, 2., 0, 2.125, 0, 2.25, auto e = NDArrayFactory::create<float16>('c', {2, 4, 2}, {0, 1.875, 0, 2., 0, 2.125, 0, 2.25,
0, 2.312, 0, 2.375, 0, 2.438, 0., 2.5}); 0, 2.312, 0, 2.375, 0, 2.438, 0., 2.5});