Hi,
I'm using my custom data type in tvm-byodt framework. For the following code snippet I get an error:
...
r = """
#[version = "0.0.5"]
def @main (%x: Tensor[(3), custom[myfloat]32], %y: Tensor[(3), custom[myfloat]32]) {
%0 = subtract(%x, %y);
multiply(%0, %0)
}
"""
module = tvm.parser.fromtext(source = r)
Error:
TVMError: expected opening brace after 'custom' type incustom
Does anybody know why I get this error?