Add a parser test for the bitcast-convert instruction.

PiperOrigin-RevId: 244267429
This commit is contained in:
George Karpenkov 2019-04-18 15:09:32 -07:00 committed by TensorFlower Gardener
parent 1260d2cac3
commit fb49f672cb

View File

@ -1536,6 +1536,19 @@ ENTRY MinMaxValues {
)"
},
// Bitcast-convert usage
{
"BitcastConvert",
R"(HloModule BitcastConvert
ENTRY BitcastConvertUsage {
p = f32[100]{0} parameter(0)
ROOT out = u32[100]{0} bitcast-convert(p)
}
)"
}
});
// clang-format on
}