[GitHub] [tvm] elvin-n commented on a diff in pull request #13362: [OpenCL] Introduce OpenCL wrapper to TVM

2022-11-15 Thread GitBox
elvin-n commented on code in PR #13362: URL: https://github.com/apache/tvm/pull/13362#discussion_r1023034786 ## cmake/config.cmake: ## @@ -65,7 +65,7 @@ set(USE_AOCL OFF) # Whether enable OpenCL runtime # # Possible values: -# - ON: enable OpenCL with cmake's auto search +# -

[GitHub] [tvm] elvin-n commented on a diff in pull request #13362: [OpenCL] Introduce OpenCL wrapper to TVM

2022-11-15 Thread GitBox
elvin-n commented on code in PR #13362: URL: https://github.com/apache/tvm/pull/13362#discussion_r1022832802 ## cmake/modules/OpenCL.cmake: ## @@ -49,12 +49,17 @@ else() endif(USE_AOCL) if(USE_OPENCL) - if (NOT OpenCL_FOUND) -find_package(OpenCL REQUIRED) - endif() -

[GitHub] [tvm] elvin-n commented on a diff in pull request #13362: [OpenCL] Introduce OpenCL wrapper to TVM

2022-11-15 Thread GitBox
elvin-n commented on code in PR #13362: URL: https://github.com/apache/tvm/pull/13362#discussion_r1022712134 ## apps/cpp_rpc/README.md: ## @@ -37,7 +37,15 @@ This folder contains a simple recipe to make RPC server in c++. # Path to the desired C++ cross compiler set(CMAKE

[GitHub] [tvm] elvin-n commented on a diff in pull request #13362: [OpenCL] Introduce OpenCL wrapper to TVM

2022-11-15 Thread GitBox
elvin-n commented on code in PR #13362: URL: https://github.com/apache/tvm/pull/13362#discussion_r1022710053 ## cmake/modules/OpenCL.cmake: ## @@ -49,12 +49,17 @@ else() endif(USE_AOCL) if(USE_OPENCL) - if (NOT OpenCL_FOUND) -find_package(OpenCL REQUIRED) - endif() -

[GitHub] [tvm] elvin-n commented on a diff in pull request #13362: [OpenCL] Introduce OpenCL wrapper to TVM

2022-11-14 Thread GitBox
elvin-n commented on code in PR #13362: URL: https://github.com/apache/tvm/pull/13362#discussion_r1021996120 ## apps/android_camera/app/src/main/jni/Application.mk: ## @@ -32,9 +32,9 @@ APP_ABI ?= all APP_STL := c++_shared APP_CPPFLAGS += -DTVM_LOG_STACK_TRACE=0 -DTVM4J_ANDR

[GitHub] [tvm] elvin-n commented on a diff in pull request #13362: [OpenCL] Introduce OpenCL wrapper to TVM

2022-11-14 Thread GitBox
elvin-n commented on code in PR #13362: URL: https://github.com/apache/tvm/pull/13362#discussion_r1021987579 ## cmake/modules/OpenCL.cmake: ## @@ -49,12 +49,17 @@ else() endif(USE_AOCL) if(USE_OPENCL) - if (NOT OpenCL_FOUND) -find_package(OpenCL REQUIRED) - endif() -

[GitHub] [tvm] elvin-n commented on a diff in pull request #13362: [OpenCL] Introduce OpenCL wrapper to TVM

2022-11-14 Thread GitBox
elvin-n commented on code in PR #13362: URL: https://github.com/apache/tvm/pull/13362#discussion_r1021213361 ## .gitmodules: ## @@ -16,3 +16,6 @@ [submodule "3rdparty/cutlass"] path = 3rdparty/cutlass url = https://github.com/NVIDIA/cutlass.git +[submodule "3rdp