This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from gunrock/dev
Bug-fixes, minor enhancements and clean-up with unit tests.
- Loading branch information
Showing
34 changed files
with
218 additions
and
360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
%%MatrixMarket matrix coordinate pattern symmetric | ||
3 3 3 | ||
1 2 | ||
1 3 | ||
2 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# begin /* Add unit tests' subdirectories */ | ||
add_subdirectory(array) | ||
add_subdirectory(mtx2bin) | ||
add_subdirectory(src_vertex_test) | ||
# end /* Add unit tests' subdirectories */ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# begin /* Set the application name. */ | ||
set(APPLICATION_NAME array) | ||
# end /* Set the application name. */ | ||
|
||
# begin /* Add CUDA executables */ | ||
add_executable(${APPLICATION_NAME}) | ||
|
||
set(SOURCE_LIST | ||
test_${APPLICATION_NAME}.cu | ||
) | ||
|
||
target_sources(${APPLICATION_NAME} PRIVATE ${SOURCE_LIST}) | ||
target_link_libraries(${APPLICATION_NAME} PRIVATE essentials) | ||
get_target_property(ESSENTIALS_ARCHITECTURES essentials CUDA_ARCHITECTURES) | ||
set_target_properties(${APPLICATION_NAME} | ||
PROPERTIES | ||
CUDA_ARCHITECTURES ${ESSENTIALS_ARCHITECTURES} | ||
) # XXX: Find a better way to inherit essentials properties. | ||
|
||
message("-- Example Added: ${APPLICATION_NAME}") | ||
# end /* Add CUDA executables */ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
%%MatrixMarket matrix coordinate real symmetric | ||
7 7 13 | ||
2 1 3 | ||
3 1 1 | ||
4 1 3 | ||
5 2 7 | ||
3 2 2 | ||
4 3 1 | ||
5 3 5 | ||
6 3 2 | ||
6 4 4 | ||
7 4 3 | ||
6 5 1 | ||
7 5 2 | ||
7 6 1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.