Skip to content

Commit

Permalink
libs built
Browse files Browse the repository at this point in the history
  • Loading branch information
mcordery committed Dec 31, 2024
1 parent 13d7955 commit 3689de7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ endif()
#rapids_cmake_install_lib_dir( lib_dir )
include(CPack)

set(DESTDIR ${CMAKE_INSTALL_PREFIX})
#set(DESTDIR ${CMAKE_INSTALL_PREFIX})

install(TARGETS cugraph
DESTINATION lib
Expand Down
16 changes: 8 additions & 8 deletions cpp/src/c_api/generic_cascaded_dispatch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ constexpr decltype(auto) edge_type_type_dispatcher(cugraph_data_type_id_t edge_t
}

default: {
std::stringstream ss;
ss << "ERROR: Unknown type enum:" << static_cast<int>(edge_type_type);
throw std::runtime_error(ss.str());
// std::stringstream ss;
// ss << "ERROR: Unknown type enum:" << static_cast<int>(edge_type_type);
throw std::runtime_error("ERROR: Unknown type enum:");
}
}
}
Expand Down Expand Up @@ -174,9 +174,9 @@ constexpr decltype(auto) weight_dispatcher(cugraph_data_type_id_t weight_type,
edge_type_type, store_transposed, multi_gpu, functor);
} break;
default: {
std::stringstream ss;
ss << "ERROR: Unknown type enum:" << static_cast<int>(weight_type);
throw std::runtime_error(ss.str());
// std::stringstream ss;
// ss << "ERROR: Unknown type enum:" << static_cast<int>(weight_type);
throw std::runtime_error("ERROR: Unknown type enum:");
}
}
}
Expand Down Expand Up @@ -215,7 +215,7 @@ constexpr decltype(auto) edge_dispatcher(cugraph_data_type_id_t edge_type,
default: {
// std::stringstream ss;
// ss << "ERROR: Unknown type enum:" << static_cast<int>(edge_type);
throw std::runtime_error(ss.str());
throw std::runtime_error("ERROR: Unknown type enum:");
}
}
}
Expand Down Expand Up @@ -255,7 +255,7 @@ inline decltype(auto) vertex_dispatcher(cugraph_data_type_id_t vertex_type,
default: {
// std::stringstream ss;
// ss << "ERROR: Unknown type enum:" << static_cast<int>(vertex_type);
throw std::runtime_error(ss.str());
throw std::runtime_error("ERROR: Unknown type enum:");
}
}
}
Expand Down

0 comments on commit 3689de7

Please sign in to comment.