Skip to content

[svm] Use a single version of the input data for all models #100

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion svm/CUDA/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ endif()

set(CUDA_SEPARABLE_COMPILATION ON)
message(STATUS "CXX Compilation flags to: ${CMAKE_CXX_FLAGS}")
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/a9a
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/../data/a9a
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})

include_directories(${CUDA_TOOLKIT_INCLUDE})
Expand Down
3 changes: 2 additions & 1 deletion svm/HIP/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ set(MY_HIPCC_OPTIONS)
set(MY_NVCC_OPTIONS)
set(CMAKE_HIP_ARCHITECTURES OFF)

file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/a9a DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/../data/a9a
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})

set_source_files_properties(${MY_SOURCE_FILES} PROPERTIES HIP_SOURCE_PROPERTY_FORMAT 1)
hip_add_executable(${MY_TARGET_NAME} ${MY_SOURCE_FILES} HIPCC_OPTIONS ${MY_HIPCC_OPTIONS} NVCC_OPTIONS ${MY_NVCC_OPTIONS})
209 changes: 0 additions & 209 deletions svm/HIP/a.m

This file was deleted.

Loading