aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/tests/axpy_simple_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/tests/axpy_simple_test.cc')
-rw-r--r--tensorflow/compiler/xla/tests/axpy_simple_test.cc32
1 files changed, 16 insertions, 16 deletions
diff --git a/tensorflow/compiler/xla/tests/axpy_simple_test.cc b/tensorflow/compiler/xla/tests/axpy_simple_test.cc
index fcd9ff55e3..8d15b7841b 100644
--- a/tensorflow/compiler/xla/tests/axpy_simple_test.cc
+++ b/tensorflow/compiler/xla/tests/axpy_simple_test.cc
@@ -29,10 +29,10 @@ class AxpySimpleTest : public ClientLibraryTestBase {};
TEST_F(AxpySimpleTest, AxTenValues) {
XlaBuilder builder("ax_10");
- auto alpha = builder.ConstantR0<float>(3.1415926535);
- auto x = builder.ConstantR1<float>(
- {-1.0, 1.0, 2.0, -2.0, -3.0, 3.0, 4.0, -4.0, -5.0, 5.0});
- builder.Mul(alpha, x);
+ auto alpha = ConstantR0<float>(&builder, 3.1415926535);
+ auto x = ConstantR1<float>(
+ &builder, {-1.0, 1.0, 2.0, -2.0, -3.0, 3.0, 4.0, -4.0, -5.0, 5.0});
+ Mul(alpha, x);
std::vector<float> expected = {
-3.14159265, 3.14159265, 6.28318531, -6.28318531, -9.42477796,
@@ -42,11 +42,11 @@ TEST_F(AxpySimpleTest, AxTenValues) {
XLA_TEST_F(AxpySimpleTest, AxpyZeroValues) {
XlaBuilder builder("axpy_10");
- auto alpha = builder.ConstantR0<float>(3.1415926535);
- auto x = builder.ConstantR1<float>({});
- auto y = builder.ConstantR1<float>({});
- auto ax = builder.Mul(alpha, x);
- builder.Add(ax, y);
+ auto alpha = ConstantR0<float>(&builder, 3.1415926535);
+ auto x = ConstantR1<float>(&builder, {});
+ auto y = ConstantR1<float>(&builder, {});
+ auto ax = Mul(alpha, x);
+ Add(ax, y);
std::vector<float> expected = {};
ComputeAndCompareR1<float>(&builder, expected, {}, ErrorSpec(0.0001));
@@ -54,13 +54,13 @@ XLA_TEST_F(AxpySimpleTest, AxpyZeroValues) {
TEST_F(AxpySimpleTest, AxpyTenValues) {
XlaBuilder builder("axpy_10");
- auto alpha = builder.ConstantR0<float>(3.1415926535);
- auto x = builder.ConstantR1<float>(
- {-1.0, 1.0, 2.0, -2.0, -3.0, 3.0, 4.0, -4.0, -5.0, 5.0});
- auto y = builder.ConstantR1<float>(
- {5.0, -5.0, -4.0, 4.0, 3.0, -3.0, -2.0, 2.0, 1.0, -1.0});
- auto ax = builder.Mul(alpha, x);
- builder.Add(ax, y);
+ auto alpha = ConstantR0<float>(&builder, 3.1415926535);
+ auto x = ConstantR1<float>(
+ &builder, {-1.0, 1.0, 2.0, -2.0, -3.0, 3.0, 4.0, -4.0, -5.0, 5.0});
+ auto y = ConstantR1<float>(
+ &builder, {5.0, -5.0, -4.0, 4.0, 3.0, -3.0, -2.0, 2.0, 1.0, -1.0});
+ auto ax = Mul(alpha, x);
+ Add(ax, y);
TF_ASSERT_OK_AND_ASSIGN(ProgramShape shape, builder.GetProgramShape());