bugfix in allreduce

This commit is contained in:
tqchen
2014-11-23 11:31:34 -08:00
parent 115424826b
commit 69b2f31098
2 changed files with 11 additions and 4 deletions

View File

@@ -113,8 +113,11 @@ int main(int argc, char *argv[]) {
std::string name = sync::GetProcessorName();
printf("[%d] start at %s\n", rank, name.c_str());
TestMax(n);
printf("[%d] TestMax pass\n", rank);
TestSum(n);
printf("[%d] TestSum pass\n", rank);
TestReducer(n);
printf("[%d] TestReducer pass\n", rank);
sync::Finalize();
printf("[%d] all check pass\n", rank);
return 0;