You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I set, export CUTLASS_DIR=/disk/cutlass/build/install, and run cmake .. for example_60 in build directory, it gives me this error.
-- Using CUTLASS specified at /disk/cutlass/build/install.
CMake Error at /disk/cutlass/build/NvidiaCutlassConfig.cmake:9 (include):
include could not find requested file:
When I change "include("${NvidiaCutlass_CMAKE_DIR}/NvidiaCutlassTargets.cmake")" to "include("/disk/cutlass/build/install/lib/cmake/NvidiaCutlass/NvidiaCutlassTargets.cmake")", it compiles.
What is the possible issue...? I am new to cmake. Why is "NvidiaCutlass_CMAKE_DIR" not being detected correctly?
I am pretty sure rest of build has succeeded.
The text was updated successfully, but these errors were encountered:
When I set, export CUTLASS_DIR=/disk/cutlass/build/install, and run cmake .. for example_60 in build directory, it gives me this error.
If I set, export CUTLASS_DIR=/disk/cutlass/build, I still get same error.
When I type "find . -name NvidiaCutlassTargets.cmake" in "/disk/cutlass/build", I get below so NvidiaCutlassTargets.cmake does exist.
When I change "include("${NvidiaCutlass_CMAKE_DIR}/NvidiaCutlassTargets.cmake")" to "include("/disk/cutlass/build/install/lib/cmake/NvidiaCutlass/NvidiaCutlassTargets.cmake")", it compiles.
What is the possible issue...? I am new to cmake. Why is "NvidiaCutlass_CMAKE_DIR" not being detected correctly?
I am pretty sure rest of build has succeeded.
The text was updated successfully, but these errors were encountered: