forked from gunrock/gunrock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing exceptions, renamed GTC tutorial files.
- Loading branch information
Showing
21 changed files
with
112 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Graph Coloring | ||
# ------------------------------------------------------------------------ | ||
project(color) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) | ||
|
||
add_test(NAME TEST_COLOR COMMAND color market | ||
${gunrock_INCLUDE_DIRS}/dataset/small/chesapeake.mtx --undirected) | ||
set_tests_properties(TEST_COLOR PROPERTIES PASS_REGULAR_EXPRESSION "0 errors occurred.") |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Geolocation | ||
# ------------------------------------------------------------------------ | ||
project(geo) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project GPU TECH CONF. TUTORIAL (SSSP) | ||
# ------------------------------------------------------------------------ | ||
project(gtc) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Graph Trend Filtering | ||
# ------------------------------------------------------------------------ | ||
project(gtf) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Hello World Tutorial (Gunrock) | ||
# ------------------------------------------------------------------------ | ||
project(hello) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,10 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project k-Nearest Neighbor (& Shared Nearest Neighbor) | ||
# ------------------------------------------------------------------------ | ||
project(knn) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) | ||
|
||
add_test(NAME TEST_KNN COMMAND knn market | ||
${gunrock_INCLUDE_DIRS}/dataset/small/chesapeake.mtx --k=5) | ||
set_tests_properties(TEST_KNN PROPERTIES PASS_REGULAR_EXPRESSION "PASSED KNN") |
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,12 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Louvain Community Detection | ||
# ------------------------------------------------------------------------ | ||
project(louvain) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) | ||
|
||
add_test(NAME TEST_LOUVAIN COMMAND louvain market | ||
${gunrock_INCLUDE_DIRS}/dataset/small/chesapeake.mtx | ||
--omp-threads=32 --advance-mode=ALL_EDGES --unify-segments=true) | ||
set_tests_properties(TEST_LOUVAIN PROPERTIES PASS_REGULAR_EXPRESSION "PASS") | ||
|
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project MaxFlow | ||
# ------------------------------------------------------------------------ | ||
project(mf) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Local Graph Clustering (PR Nibble) | ||
# ------------------------------------------------------------------------ | ||
project(pr_nibble) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Graph Projection | ||
# ------------------------------------------------------------------------ | ||
project(proj) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Graph Sage | ||
# ------------------------------------------------------------------------ | ||
project(sage) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Sub-Graph Matching | ||
# ------------------------------------------------------------------------ | ||
project(sm) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Scan Statistics | ||
# ------------------------------------------------------------------------ | ||
project(ss) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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,6 @@ | ||
# ------------------------------------------------------------------------ | ||
# Gunrock: Sub-Project Vertex Nomination | ||
# ------------------------------------------------------------------------ | ||
project(vn) | ||
message("-- Project Added: ${PROJECT_NAME}") | ||
include(${CMAKE_SOURCE_DIR}/cmake/SetSubProject.cmake) |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
/** | ||
* @file | ||
* sssp_test.cu | ||
* gtc_test.cu | ||
* | ||
* @brief Test related functions for SSSP | ||
*/ | ||
|