aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_parser_test.cc
diff options
context:
space:
mode:
authorGravatar Nick Desaulniers <ndesaulniers@google.com>2018-07-20 13:50:37 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-20 13:53:55 -0700
commite542062aa1613dc01b82b6378675563160fe0abf (patch)
tree15ce2b045f53f2f610a563e8d0091d96d2db2f4c /tensorflow/compiler/xla/service/hlo_parser_test.cc
parent265292420de30f24805d28886d403dc42d3685b3 (diff)
Start implementation of Iota HLO.
PiperOrigin-RevId: 205447892
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_parser_test.cc')
-rw-r--r--tensorflow/compiler/xla/service/hlo_parser_test.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_parser_test.cc b/tensorflow/compiler/xla/service/hlo_parser_test.cc
index 6ba34cf22a..1f0572c576 100644
--- a/tensorflow/compiler/xla/service/hlo_parser_test.cc
+++ b/tensorflow/compiler/xla/service/hlo_parser_test.cc
@@ -1005,6 +1005,17 @@ ENTRY CrossReplicaSumWithSubgroups {
}
)"
+},
+// Iota
+{
+"Iota",
+R"(HloModule iota
+
+ENTRY Iota {
+ ROOT iota = f32[100]{0} iota()
+}
+
+)"
}
});
// clang-format on