Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions source/Makefile.Objects
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,10 @@ OBJS_PW=fft_bundle.o\
OBJS_RELAXATION=relax_data.o\
socket_ipi.o\
socket_frame.o\
socket_frame_utils.o\
socket_driver.o\
socket_utils.o\
socket_handlers.o\
cg_base.o\
bfgs_basic.o\
relax_driver.o\
Expand Down
1 change: 1 addition & 0 deletions source/source_base/parallel_reduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ template void Parallel_Reduce::reduce_min<int>(int&);
template void Parallel_Reduce::reduce_min<float>(float&);
template void Parallel_Reduce::reduce_min<double>(double&);

template void Parallel_Reduce::reduce_max<int>(int&);
template void Parallel_Reduce::reduce_max<float>(float&);
template void Parallel_Reduce::reduce_max<double>(double&);

Expand Down
3 changes: 3 additions & 0 deletions source/source_relax/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ add_library(
OBJECT
relax_data.cpp
socket_ipi.cpp
socket_frame_utils.cpp
socket_frame.cpp
socket_utils.cpp
socket_handlers.cpp
socket_driver.cpp
cg_base.cpp
relax_driver.cpp
Expand Down
Loading
Loading