Skip to content

Commit

Permalink
remove unnecessary explicit template instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Oct 12, 2021
1 parent 5cc7799 commit 2f67c30
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions cpp/src/structure/graph_view_mg.cu
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,5 @@ template class graph_view_t<int64_t, int64_t, float, true, true>;
template class graph_view_t<int64_t, int64_t, float, false, true>;
template class graph_view_t<int64_t, int64_t, double, true, true>;
template class graph_view_t<int64_t, int64_t, double, false, true>;
template class graph_view_t<int64_t, int32_t, float, true, true>;
template class graph_view_t<int64_t, int32_t, float, false, true>;
template class graph_view_t<int64_t, int32_t, double, true, true>;
template class graph_view_t<int64_t, int32_t, double, false, true>;

} // namespace cugraph
4 changes: 0 additions & 4 deletions cpp/src/structure/graph_view_sg.cu
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,5 @@ template class graph_view_t<int64_t, int64_t, float, true, false>;
template class graph_view_t<int64_t, int64_t, float, false, false>;
template class graph_view_t<int64_t, int64_t, double, true, false>;
template class graph_view_t<int64_t, int64_t, double, false, false>;
template class graph_view_t<int64_t, int32_t, float, true, false>;
template class graph_view_t<int64_t, int32_t, float, false, false>;
template class graph_view_t<int64_t, int32_t, double, true, false>;
template class graph_view_t<int64_t, int32_t, double, false, false>;

} // namespace cugraph

0 comments on commit 2f67c30

Please sign in to comment.