Solved:
I was confused by LLVM's triple vs target -- ther're not the same (though,
sometimes they are :-)).
For example:
`$ clang -target x86_64-w64-mingw32 -v 2>&1 | grep Target`
`Target: x86_64-w64-windows-gnu`
Therefore, the correct "triple" in my case should have been:
x86_64-w64-windows-
Answering my own question regarding problems with Windows build (may be someone
gets there by googling):
There are following definition in file src/relay/transforms/simplify_expr.cc:
`static Op reshape_op = Op::Get("reshape");`
`static Op reverse_reshape_op = Op::Get("contrib_reverse_reshape"
Dear community people,
I have no problems with TVM running natively on Linux (and it works great!),
but now I'm forced to use TVM for delpoyment on Windows.
It looks like I'm missing something in my appempt to cross-compile, and
therefore kindly asking for a help please.
I've built llvm/clang