aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_parser_test.cc
diff options
context:
space:
mode:
authorGravatar Mark Heffernan <meheff@google.com>2018-08-13 11:58:25 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-13 12:08:21 -0700
commit881f58d20cc159817eadefa6f8e1b7d87c85d01f (patch)
treee66a67e635afb9a788336a67f4b97300e468f82b /tensorflow/compiler/xla/service/hlo_parser_test.cc
parent55b327916aa9b1f558242869412ae411d00d20ee (diff)
Enable arbitrary comments in HLO in both /*...*/ and // forms.
Allow '/*...*/' and '//' comments to appear anywhere in HLO text, including multi-line comments. Previously only '/*...*/' comments were only allowed and only in certain locations in a serialized Literal. PiperOrigin-RevId: 208519204
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_parser_test.cc')
-rw-r--r--tensorflow/compiler/xla/service/hlo_parser_test.cc75
1 files changed, 75 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_parser_test.cc b/tensorflow/compiler/xla/service/hlo_parser_test.cc
index 4cd21841f4..5990a3d478 100644
--- a/tensorflow/compiler/xla/service/hlo_parser_test.cc
+++ b/tensorflow/compiler/xla/service/hlo_parser_test.cc
@@ -1560,6 +1560,81 @@ ENTRY consts {
"last");
}
+TEST_F(HloParserTest, Comments) {
+ const string original = R"(/* module description. */
+HloModule comments:
+
+ENTRY /*comment*/ c1 {
+ /* blah */
+ ROOT const1 = /*foo*/f32[1]{0} constant({12345 /*bar*/})
+ /* comment */
+}
+
+/* something else */
+
+)";
+ auto module = ParseHloString(original);
+ TF_ASSERT_OK(module.status());
+}
+
+TEST_F(HloParserTest, MultilineComments) {
+ const string original = R"(HloModule multiline_comment:
+ENTRY c1 {
+ /*
+ ROOT foo = f32[1]{0} constant({12345})
+ */
+ ROOT const1 = f32[1]{0} constant({12345})
+/*
+a
+b
+c
+d
+
+*/
+})";
+ auto module = ParseHloString(original);
+ TF_ASSERT_OK(module.status());
+}
+
+TEST_F(HloParserTest, UnterminatedComment) {
+ const string original = R"(HloModule unterminated_comment:
+ENTRY c1 {
+/* unterminated
+ ROOT const1 = f32[1]{0} constant({12345})
+})";
+ // Verify that the error message points to the beginning of the unterminated
+ // comment.
+ ExpectHasSubstr(ParseHloString(original).status().error_message(),
+ "/* unterminated\n^");
+}
+
+TEST_F(HloParserTest, SlashSlashComments) {
+ const string original = R"(HloModule slash_slash_comment:
+// Garbage
+ENTRY c1 {
+ // Foo bar
+ ROOT const1 = f32[1]{0} constant({12345}) // Something else
+})";
+ auto module = ParseHloString(original);
+ TF_ASSERT_OK(module.status());
+}
+
+TEST_F(HloParserTest, SlashSlashCommentMsDosEolFormat) {
+ const string original =
+ "HloModule slash_slash_comment:\r\n// Garbage\r\nENTRY c1 {\r\n// Foo "
+ "bar\r\nROOT const1 = f32[1]{0} constant({12345}) // Something else\r\n}";
+ auto module = ParseHloString(original);
+ TF_ASSERT_OK(module.status());
+}
+
+TEST_F(HloParserTest, SlashSlashCommentMacEolFormat) {
+ const string original =
+ "HloModule slash_slash_comment:\r// Garbage\rENTRY c1 {\r// Foo "
+ "bar\rROOT const1 = f32[1]{0} constant({12345}) // Something else\r}";
+ auto module = ParseHloString(original);
+ TF_ASSERT_OK(module.status());
+}
+
TEST_F(HloParserTest, MultipleEntries) {
const string original = R"(HloModule multiple_entries:
ENTRY c1 {