Skip to content

Commit

Permalink
fix cuda_runtime not found and assert len(MARKERS) >= len(y_keys[index])
Browse files Browse the repository at this point in the history
  • Loading branch information
engineer1109 committed Mar 13, 2024
1 parent b35737b commit 86cb663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ if(CLIENTS OR TESTS)
endif()
endif()
if(CUBLAS_FOUND)
set(REF_INCLUDES ${REF_INCLUDES} ${CUDA_INCLUDE_DIRS})
set(REF_INCLUDES ${REF_INCLUDES} ${CUDA_INCLUDE_DIRS} ${CUBLAS_INCLUDE_DIRS})
set(REF_LIBRARIES ${REF_LIBRARIES} ${CUDA_LIBRARIES} ${CUBLAS_LIBRARIES})
set(WRAPPERS ${WRAPPERS} test/wrapper_cuda.hpp test/wrapper_cublas.hpp)
if(MSVC)
Expand Down
2 changes: 1 addition & 1 deletion scripts/benchmark/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
PURPLISH = [c / 255.0 for c in [85, 0, 119]] # #550077
GREEN = [c / 255.0 for c in [144, 224, 98]] # #90e062
COLORS = [BLUEISH, REDISH, PURPLISH, GREEN]
MARKERS = ["o-", "x-", ".-"]
MARKERS = ["o-", "x-", ".-", "--"]


def plot_graphs(results, file_name, num_rows, num_cols,
Expand Down

0 comments on commit 86cb663

Please sign in to comment.