Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the sgemm_nt_1_sycl PoC #15

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 20 additions & 27 deletions examples/cute/tutorial/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,34 +27,27 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

if (CUTLASS_ENABLE_SYCL)
cutlass_example_add_executable(
sgemm_nt_1_sycl
sgemm_nt_1_sycl.cpp
)
else ()
cutlass_example_add_executable(
sgemm_1
sgemm_1.cu
)
cutlass_example_add_executable(
sgemm_1
sgemm_1.cu
)

cutlass_example_add_executable(
sgemm_2
sgemm_2.cu
)
cutlass_example_add_executable(
sgemm_2
sgemm_2.cu
)

cutlass_example_add_executable(
sgemm_sm70
sgemm_sm70.cu
)
cutlass_example_add_executable(
sgemm_sm70
sgemm_sm70.cu
)

cutlass_example_add_executable(
sgemm_sm80
sgemm_sm80.cu
)
cutlass_example_add_executable(
sgemm_sm80
sgemm_sm80.cu
)

cutlass_example_add_executable(
tiled_copy
tiled_copy.cu
)
endif ()
cutlass_example_add_executable(
tiled_copy
tiled_copy.cu
)
Loading