[TVM Discuss] [Questions] [ERROR]/tvm/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: OpenCL_INCLUDE_DIR-NOTFOUND/CL/cl.h: No such file or directory

2020-04-27 Thread gaojj via TVM Discuss
I have the same problems too, how to solve it ? --- [Visit Topic](https://discuss.tvm.ai/t/error-tvm-build-cmakefiles-cmaketmp-checksymbolexists-c10-fatal-error-opencl-include-dir-notfound-cl-cl-h-no-such-file-or-directory/3362/4) to respond. You are receiving this because you enabled mai

[TVM Discuss] [Questions] Error when compiling using Opencl [ error: Compiler frontend failed (error code 59) ]

2020-04-27 Thread ckh via TVM Discuss
In addition, I experimented, but if I set the shape of the input and the param as follows, it works normally. ## Setting Shape of Tensor input_size = (1,3,224,224) p1_size = (64,3,3,3) --- [Visit Topic](https://discuss.tvm.ai/t/error-when-compiling-using-opencl-error-compiler-

[TVM Discuss] [Questions] Tensorize with non-divisible split factor

2020-04-27 Thread KireinaHoro via TVM Discuss
I'm working on tensorizing kernels that does not have their input sizes divisible by the dimension of the tensor intrinsic. An example of this situation would be a 30x30x30 GEMM with a 16x16x16 tensor intrinsic. This currently would result in the following lowered IR before tensorization and

[TVM Discuss] [Questions] Error when compiling using Opencl [ error: Compiler frontend failed (error code 59) ]

2020-04-27 Thread ckh via TVM Discuss
Hello! Currently, I am testing a simple convolution using TOPI. I experimented with the code below. import numpy as np import topi from tvm import relay from tvm.relay import testing import tvm from tvm.contrib import graph_runtime ## Setting Target and ctx targ