Skip to content

Commit

Permalink
Merge branch 'sycl-develop' of https://github.com/codeplaysoftware/cu…
Browse files Browse the repository at this point in the history
…tlass-fork into intel_pvc_streamk
  • Loading branch information
muhammad-tanvir-1211 committed Sep 16, 2024
2 parents 7cfbf62 + 0c3f959 commit e08e740
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions test/unit/cute/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,43 @@ if (NOT CUTLASS_ENABLE_SYCL)
test_unit_cute_hopper
test_unit_cute_msvc_compilation
)

else()

add_subdirectory(core)
add_subdirectory(layout)


if (SYCL_NVIDIA_TARGET)
# Enable Cute tests for the Nvidia backend as a part of #113
add_custom_target(
cutlass_test_unit_cute
DEPENDS
cutlass_test_unit_cute_layout
cutlass_test_unit_cute_core
)

add_custom_target(
test_unit_cute
DEPENDS
test_unit_cute_layout
test_unit_cute_core
)
endif()
if (SYCL_INTEL_TARGET)

add_custom_target(
cutlass_test_unit_cute
DEPENDS
cutlass_test_unit_cute_layout
)
cutlass_test_unit_cute_core
)

add_custom_target(
test_unit_cute
DEPENDS
test_unit_cute_layout
)
test_unit_cute_core
)

endif()
endif()

0 comments on commit e08e740

Please sign in to comment.