Multiverso/Test/main.cpp

502 строки
16 KiB
C++
Исходник Обычный вид История

#include <iostream>
#include <thread>
2016-02-23 09:26:05 +03:00
#include <random>
#include <chrono>
2016-03-15 01:14:20 +03:00
#include <ctime>
2016-04-20 16:52:49 +03:00
#include <algorithm>
2016-04-21 11:07:58 +03:00
#include <numeric>
2016-02-02 15:40:07 +03:00
2016-02-29 09:27:59 +03:00
#include <mpi.h>
#include <multiverso/multiverso.h>
2016-02-19 05:46:07 +03:00
#include <multiverso/net.h>
2016-02-04 06:03:53 +03:00
#include <multiverso/util/log.h>
2016-02-19 05:46:07 +03:00
#include <multiverso/util/net_util.h>
2016-04-17 14:56:58 +03:00
#include <multiverso/util/configure.h>
2016-04-19 12:25:20 +03:00
#include <multiverso/util/timer.h>
2016-04-19 18:30:18 +03:00
#include <multiverso/dashboard.h>
2016-02-02 15:40:07 +03:00
#include <multiverso/table/array_table.h>
#include <multiverso/table/kv_table.h>
2016-03-30 08:40:20 +03:00
#include <multiverso/table/matrix_table.h>
2016-04-19 12:25:20 +03:00
#include <multiverso/table/sparse_matrix_table.h>
2016-04-07 15:05:32 +03:00
#include <multiverso/updater/updater.h>
2016-03-03 09:11:04 +03:00
#include <gtest/gtest.h>
2016-04-19 12:25:20 +03:00
#include <memory>
2016-02-02 15:40:07 +03:00
using namespace multiverso;
void TestKV(int argc, char* argv[]) {
2016-02-02 15:40:07 +03:00
Log::Info("Test KV map \n");
// ----------------------------------------------------------------------- //
// this is a demo of distributed hash table to show how to use the multiverso
// ----------------------------------------------------------------------- //
// 1. Start the Multiverso engine ---------------------------------------- //
2016-03-01 06:34:23 +03:00
MV_Init(&argc, argv);
2016-02-02 15:40:07 +03:00
// 2. To create the shared table ----------------------------------------- //
// TODO(feiga): This table must be create at both worker and server endpoint
// simultaneously, since they should share same type and same created order
// (same order means same table id). So it's better to create them with some
// specific creator, instead of current way
// TODO(feiga): should add some if statesment
// if the node is worker, then create a worker cache table
KVWorkerTable<int, int>* dht = new KVWorkerTable<int, int>();
// if the node is server, then create a server storage table
KVServerTable<int, int>* server_dht = new KVServerTable<int, int>();
2016-03-01 06:34:23 +03:00
MV_Barrier();
2016-02-02 15:40:07 +03:00
// 3. User program ------------------------------------------------------- //
// all this interface is related with the KVWorkerTable
// the data structure and the interface can be both defined by users
// We also provides several common implementations
// For specific program, user-defined table may provides better performance
// access the local cache
std::unordered_map<int, int>& kv = dht->raw();
// The Get/Add are sync operation, when the function call returns, we already
// Get from server, or the server has Added the update
// Get from the server
dht->Get(0);
// Check the result. Since no one added, this should be 0
2016-03-04 09:18:15 +03:00
Log::Info("Get 0 from kv server: result = %d\n", kv[0]);
2016-02-02 15:40:07 +03:00
// Add 1 to the server
2016-03-04 09:18:15 +03:00
dht->Add(0, 1);
2016-02-02 15:40:07 +03:00
// Check the result. Since just added one, this should be 1
dht->Get(0);
Log::Info("Get 0 from kv server after add 1: result = %d\n", kv[0]);
// 4. Shutdown the Multiverso engine. ------------------------------------ //
2016-03-01 06:34:23 +03:00
MV_ShutDown();
2016-02-02 15:40:07 +03:00
}
void TestArray(int argc, char* argv[]) {
2016-02-02 15:40:07 +03:00
Log::Info("Test Array \n");
2016-03-01 06:34:23 +03:00
MV_Init(&argc, argv);
2016-05-05 15:29:52 +03:00
ArrayWorker<float>* shared_array = new ArrayWorker<float>(50000000);
ArrayServer<float>* server_array = new ArrayServer<float>(50000000);
2016-02-02 15:40:07 +03:00
2016-03-01 06:34:23 +03:00
MV_Barrier();
2016-02-02 15:40:07 +03:00
Log::Info("Create tables OK\n");
2016-05-05 15:29:52 +03:00
std::vector<float> delta(50000000);
for (int i = 0; i < 50000000; ++i)
delta[i] = static_cast<float>(i);
2016-05-05 15:29:52 +03:00
float* data = new float[50000000];
2016-02-23 09:15:22 +03:00
int iter = 1000;
2016-02-23 09:15:22 +03:00
for (int i = 0; i < iter; ++i) {
// std::vector<float>& vec = shared_array->raw();
2016-02-02 15:40:07 +03:00
// shared_array->Get();
2016-05-05 15:29:52 +03:00
shared_array->Get(data, 50000000);
2016-02-02 15:40:07 +03:00
for (int j = 0; j < 10; ++j)
std::cout << data[j] << " "; std::cout << std::endl;
2016-02-02 15:40:07 +03:00
2016-04-26 12:40:45 +03:00
AddOption option;
2016-04-07 13:42:52 +03:00
option.set_learning_rate(1 - 0.0001 * i);
option.set_momentum(0.99);
option.set_rho(0.01f);
2016-05-05 15:29:52 +03:00
shared_array->Add(delta.data(), 50000000, &option);
shared_array->Add(delta.data(), 50000000, &option);
2016-02-02 15:40:07 +03:00
}
2016-03-01 06:34:23 +03:00
MV_ShutDown();
2016-02-02 15:40:07 +03:00
}
void TestNet(int argc, char* argv[]) {
2016-02-02 15:40:07 +03:00
NetInterface* net = NetInterface::Get();
net->Init(&argc, argv);
2016-02-02 15:40:07 +03:00
2016-03-02 11:02:03 +03:00
const char* chi1 = std::string("hello, world").c_str();
const char* chi2 = std::string("hello, c++").c_str();
const char* chi3 = std::string("hello, multiverso").c_str();
char* hi1 = new char[14];
strcpy(hi1, chi1);
char* hi2 = new char[12];
strcpy(hi2, chi2);
char* hi3 = new char[19];
strcpy(hi3, chi3);
2016-02-02 15:40:07 +03:00
if (net->rank() == 0) {
2016-03-01 17:51:27 +03:00
for (int rank = 1; rank < net->size(); ++rank) {
MessagePtr msg(new Message());// = std::make_unique<Message>();
msg->set_src(0);
msg->set_dst(rank);
msg->Push(Blob(hi1, 13));
msg->Push(Blob(hi2, 11));
msg->Push(Blob(hi3, 18));
2016-03-08 22:31:22 +03:00
for (int i = 0; i < msg->size(); ++i) {
Log::Info("In Send: %s\n", msg->data()[i].data());
};
2016-04-17 14:56:58 +03:00
while (net->Send(msg) == 0);
Log::Info("rank 0 send\n");
2016-03-01 17:51:27 +03:00
}
2016-02-23 09:15:22 +03:00
2016-03-01 17:51:27 +03:00
for (int i = 1; i < net->size(); ++i) {
MessagePtr msg(new Message());
msg.reset(new Message());
while (net->Recv(&msg) == 0) {
// Log::Info("recv return 0\n");
}
Log::Info("rank 0 recv\n");
// CHECK(strcmp(msg->data()[0].data(), hi) == 0);
std::vector<Blob> recv_data = msg->data();
CHECK(recv_data.size() == 3);
for (int i = 0; i < msg->size(); ++i) {
Log::Info("recv from srv %d: %s\n", msg->src(), recv_data[i].data());
};
2016-02-23 09:15:22 +03:00
}
2016-04-21 14:52:35 +03:00
} else {// other rank
2016-02-26 09:36:38 +03:00
MessagePtr msg(new Message());// = std::make_unique<Message>();
2016-02-23 09:15:22 +03:00
while (net->Recv(&msg) == 0) {
2016-03-01 17:51:27 +03:00
// Log::Info("recv return 0\n");
2016-02-23 09:15:22 +03:00
}
2016-03-01 17:51:27 +03:00
Log::Info("rank %d recv\n", net->rank());
std::vector<Blob>& recv_data = msg->data();
CHECK(recv_data.size() == 3);
for (int i = 0; i < msg->size(); ++i) {
Log::Info("%s\n", recv_data[i].data());
}
2016-02-23 09:15:22 +03:00
msg.reset(new Message());
2016-03-01 17:51:27 +03:00
msg->set_src(net->rank());
2016-02-23 09:15:22 +03:00
msg->set_dst(0);
msg->Push(Blob(hi1, 13));
msg->Push(Blob(hi2, 11));
msg->Push(Blob(hi3, 18));
2016-04-17 14:56:58 +03:00
while (net->Send(msg) == 0);
2016-03-01 17:51:27 +03:00
Log::Info("rank %d send\n", net->rank());
2016-02-02 15:40:07 +03:00
}
2016-03-01 17:51:27 +03:00
// while (!net->Test()) {
// // wait all message process finished
// }
2016-02-02 15:40:07 +03:00
net->Finalize();
}
2016-02-19 05:46:07 +03:00
void TestIP() {
std::unordered_set<std::string> ip_list;
2016-02-26 09:36:38 +03:00
// net::GetLocalIPAddress(&ip_list);
for (auto ip : ip_list) Log::Info("%s\n", ip.c_str());
2016-02-19 05:46:07 +03:00
}
2016-03-03 11:30:09 +03:00
void TestMatrix(int argc, char* argv[]){
2016-04-17 14:56:58 +03:00
Log::Info("Test Matrix\n");
2016-03-03 11:30:09 +03:00
2016-04-17 14:56:58 +03:00
MV_Init(&argc, argv);
2016-03-03 11:30:09 +03:00
2016-04-27 16:33:27 +03:00
int num_row = 11, num_col = 10;
2016-04-17 14:56:58 +03:00
int size = num_row * num_col;
2016-04-27 16:33:27 +03:00
multiverso::SetCMDFlag("sync", true);
2016-04-17 14:56:58 +03:00
MatrixWorkerTable<float>* worker_table = new MatrixWorkerTable<float>(num_row, num_col);
MatrixServerTable<float>* server_table = new MatrixServerTable<float>(num_row, num_col);
std::thread* m_prefetchThread = nullptr;
MV_Barrier();
2016-04-27 16:33:27 +03:00
int count = 0;
2016-04-17 14:56:58 +03:00
while (true)
{
2016-04-27 16:33:27 +03:00
count++;
2016-04-17 14:56:58 +03:00
if (m_prefetchThread != nullptr && m_prefetchThread->joinable())
{
m_prefetchThread->join();
delete m_prefetchThread;
m_prefetchThread = nullptr;
}
std::vector<int> v = { 0, 1, 5, 10 };
// test data
std::vector<float> delta(size);
for (int i = 0; i < size; ++i)
delta[i] = (float)i;
2016-04-17 14:56:58 +03:00
float * data = new float[size];
//m_prefetchThread = new std::thread([&](){
2016-03-03 11:30:09 +03:00
// AddOption option;
// worker_table->Add(delta.data(), size, &option); //add all
2016-04-17 14:56:58 +03:00
// MV_Barrier();
// worker_table->Get(data, size); //get all
//});
2016-04-17 14:56:58 +03:00
if (m_prefetchThread != nullptr && m_prefetchThread->joinable())
{
m_prefetchThread->join();
delete m_prefetchThread;
m_prefetchThread = nullptr;
}
//test data_vec
std::vector<float*> data_rows = { &data[0], &data[num_col], &data[5 * num_col], &data[10 * num_col] };
std::vector<float*> delta_rows = { &delta[0], &delta[num_col], &delta[5 * num_col], &delta[10 * num_col] };
2016-04-26 12:40:45 +03:00
AddOption option;
2016-04-17 14:56:58 +03:00
worker_table->Add(v, delta_rows, num_col, &option);
worker_table->Get(v, data_rows, num_col);
MV_Barrier();
printf("----------------------------\n");
for (int i = 0; i < num_row; ++i){
2016-04-27 16:33:27 +03:00
for (int j = 0; j < num_col; ++j){
float expected = (i * num_col + j) * count * MV_NumWorkers();
if (i == 0 || i == 1 || i == 5 || i == 10) {
expected += (i * num_col + j) * count * MV_NumWorkers();;
}
float actual = data[i* num_col + j];
ASSERT_FLOAT_EQ(expected, actual) << "Should be equal after adding, row: "
<< i << ", col:" << j << ", expected: " << expected << ", actual: " << actual;
}
2016-04-17 14:56:58 +03:00
}
MV_Barrier();
}
MV_ShutDown();
2016-03-03 11:30:09 +03:00
}
void TestCheckPoint(int argc, char* argv[], bool restore){
Log::Info("Test CheckPoint\n");
2016-04-17 14:56:58 +03:00
MV_Init(&argc, argv);
int num_row = 11, num_col = 10;
int size = num_row * num_col;
MatrixWorkerTable<int>* worker_table =
static_cast<MatrixWorkerTable<int>*>((new MatrixTableHelper<int>(num_row, num_col))->CreateTable());
2016-03-15 11:18:05 +03:00
if (worker_table == nullptr) {
//no worker in this node
}
2016-05-03 14:33:57 +03:00
//if restore = true, will restore server data and return the next iter number of last dump file
//else do nothing and return 0
// int begin_iter = MV_LoadTable("serverTable_");
MV_Barrier();//won't dump data without parameters
std::vector<int> delta(size);
for (int i = 0; i < size; ++i)
delta[i] = i;
int * data = new int[size];
// Log::Debug("rank %d start from iteration %d\n", MV_Rank(), begin_iter);
for (int i = 0 /*begin_iter*/; i < 50; ++i){
worker_table->Add(delta.data(), size);
MV_Barrier(); //dump table data with iteration i each k iterations
}
worker_table->Get(data, size);
printf("----------------------------\n");
for (int i = 0; i < num_row; ++i){
printf("rank %d, row %d: ", MV_Rank(), i);
for (int j = 0; j < num_col; ++j)
printf("%d ", data[i * num_col + j]);
printf("\n");
}
MV_ShutDown();
}
2016-04-17 14:56:58 +03:00
void TestAllreduce(int argc, char* argv[]) {
2016-04-17 15:34:23 +03:00
multiverso::SetCMDFlag("ma", true);
2016-04-17 14:56:58 +03:00
MV_Init(&argc, argv);
int a = 1;
MV_Aggregate(&a, 1);
std::cout << "a = " << a << std::endl;
MV_ShutDown();
2016-02-29 09:27:59 +03:00
}
2016-04-21 06:30:47 +03:00
template<typename WT, typename ST>
void TestmatrixPerformance(int argc, char* argv[],
2016-04-21 06:30:47 +03:00
std::function<std::shared_ptr<WT>(int num_row, int num_col)>CreateWorkerTable,
std::function<std::shared_ptr<ST>(int num_row, int num_col)>CreateServerTable,
2016-04-26 12:40:45 +03:00
std::function<void(const std::shared_ptr<WT>& worker_table, const std::vector<int>& row_ids, const std::vector<float*>& data_vec, size_t size, const AddOption* option, int worker_id)> Add,
2016-04-21 07:57:49 +03:00
std::function<void(const std::shared_ptr<WT>& worker_table, float* data, size_t size, int worker_id)> Get) {
2016-04-21 06:30:47 +03:00
Log::ResetLogLevel(LogLevel::Info);
Log::Info("Test Matrix\n");
2016-04-19 12:25:20 +03:00
Timer timmer;
MV_Init(&argc, argv);
2016-04-21 08:54:59 +03:00
multiverso::SetCMDFlag("sync", true);
2016-04-22 08:19:40 +03:00
int per = 0;
2016-04-20 16:52:49 +03:00
int num_row = 1000000, num_col = 50;
2016-04-27 16:33:27 +03:00
if (argc == 1){
num_row = atoi(argv[2]);
2016-04-22 08:19:40 +03:00
}
2016-04-19 12:25:20 +03:00
int size = num_row * num_col;
int worker_id = MV_Rank();
2016-04-21 14:52:35 +03:00
int worker_num = MV_Size();
2016-04-19 12:25:20 +03:00
// test data
2016-04-20 16:52:49 +03:00
float* data = new float[size];
float* delta = new float[size];
2016-04-19 12:25:20 +03:00
int* keys = new int[num_row];
2016-04-20 16:45:58 +03:00
for (auto row = 0; row < num_row; ++row) {
for (auto col = 0; col < num_col; ++col) {
2016-04-21 06:30:47 +03:00
delta[row * num_col + col] = row * num_col + col;
2016-04-20 16:45:58 +03:00
}
2016-04-19 12:25:20 +03:00
}
2016-04-26 12:40:45 +03:00
AddOption option;
2016-04-19 12:25:20 +03:00
option.set_worker_id(worker_id);
2016-04-22 09:13:14 +03:00
//std::mt19937_64 eng{ std::random_device{}() };
//std::vector<int> unique_index;
//for (int i = 0; i < num_row; i++){
// unique_index.push_back(i);
//}
2016-04-22 09:00:36 +03:00
for (auto percent = 0; percent < 10; ++percent)
2016-04-22 09:13:14 +03:00
for (auto turn = 0; turn < 10; ++turn)
2016-04-22 09:00:36 +03:00
{
2016-04-22 09:13:14 +03:00
//std::shuffle(unique_index.begin(), unique_index.end(), eng);
2016-04-22 09:00:36 +03:00
if (worker_id == 0) {
std::cout << "\nTesting: Get All Rows => Add "
2016-04-22 09:13:14 +03:00
<< percent + 1 << "0% Rows to Server => Get All Rows" << std::endl;
2016-04-22 09:00:36 +03:00
}
2016-04-21 08:54:59 +03:00
2016-04-22 09:00:36 +03:00
auto worker_table = CreateWorkerTable(num_row, num_col);
auto server_table = CreateServerTable(num_row, num_col);
MV_Barrier();
2016-04-19 12:25:20 +03:00
2016-04-22 09:00:36 +03:00
timmer.Start();
Get(worker_table, data, size, worker_id);
std::cout << " " << 1.0 * timmer.elapse() / 1000 << "s:\t" << "get all rows first time, worker id: " << worker_id << std::endl;
MV_Barrier();
2016-04-21 15:30:34 +03:00
2016-04-22 09:00:36 +03:00
std::vector<int> row_ids;
std::vector<float*> data_vec;
for (auto i = 0; i < num_row; ++i) {
if (i % 10 <= percent && i % worker_num == worker_id) {
row_ids.push_back(i);
data_vec.push_back(delta + i * num_col);
}
}
//for (auto i = 0; i < (percent + 1) * num_row / 10; i++)
//{
// row_ids.push_back(unique_index[i]);
// data_vec.push_back(delta + unique_index[i] * num_col);
//}
if (worker_id == 0) {
std::cout << "adding " << percent + 1 << " /10 rows to matrix server" << std::endl;
2016-04-21 14:52:35 +03:00
}
2016-04-21 15:30:34 +03:00
2016-04-22 09:00:36 +03:00
if (row_ids.size() > 0) {
Add(worker_table, row_ids, data_vec, num_col, &option, worker_id);
}
Get(worker_table, data, size, -1);
MV_Barrier();
timmer.Start();
Get(worker_table, data, size, worker_id);
std::cout << " " << 1.0 * timmer.elapse() / 1000 << "s:\t" << "get all rows after adding to rows, worker id: " << worker_id << std::endl;
for (auto i = 0; i < num_row; ++i) {
auto row_start = data + i * num_col;
for (auto col = 0; col < num_col; ++col) {
auto expected = i * num_col + col;
auto actual = *(row_start + col);
if (i % 10 <= percent) {
2016-04-25 05:42:20 +03:00
ASSERT_FLOAT_EQ(expected, actual) << "Should be updated after adding, worker_id:"
2016-04-22 09:00:36 +03:00
<< worker_id << ",row: " << i << ",col:" << col << ",expected: " << expected << ",actual: " << actual;
}
else {
2016-04-25 05:42:20 +03:00
ASSERT_FLOAT_EQ(0, *(row_start + col)) << "Should be 0 for non update row values, worker_id:"
2016-04-22 09:00:36 +03:00
<< worker_id << ",row: " << i << ",col:" << col << ",expected: " << expected << ",actual: " << actual;
}
2016-04-21 14:52:35 +03:00
}
}
2016-04-22 09:00:36 +03:00
MV_Barrier();
}
2016-04-21 14:52:35 +03:00
2016-04-19 12:25:20 +03:00
MV_Barrier();
Log::ResetLogLevel(LogLevel::Info);
2016-04-21 06:30:47 +03:00
Dashboard::Display();
Log::ResetLogLevel(LogLevel::Error);
2016-04-19 12:25:20 +03:00
MV_ShutDown();
}
2016-04-21 06:30:47 +03:00
void TestSparsePerf(int argc, char* argv[]) {
2016-04-21 07:57:49 +03:00
TestmatrixPerformance<SparseMatrixWorkerTable<float>, SparseMatrixServerTable<float>>(argc,
2016-04-21 06:30:47 +03:00
argv,
[](int num_row, int num_col) {
2016-04-21 07:57:49 +03:00
return std::shared_ptr<SparseMatrixWorkerTable<float>>(
new SparseMatrixWorkerTable<float>(num_row, num_col));
2016-04-22 09:00:36 +03:00
},
[](int num_row, int num_col) {
return std::shared_ptr<SparseMatrixServerTable<float>>(
new SparseMatrixServerTable<float>(num_row, num_col, false));
},
2016-04-26 12:40:45 +03:00
[](const std::shared_ptr<SparseMatrixWorkerTable<float>>& worker_table, const std::vector<int>& row_ids, const std::vector<float*>& data_vec, size_t size, const AddOption* option, const int worker_id) {
2016-04-22 09:00:36 +03:00
worker_table->Add(row_ids, data_vec, size, option);
},
[](const std::shared_ptr<SparseMatrixWorkerTable<float>>& worker_table, float* data, size_t size, int worker_id) {
2016-04-26 12:40:45 +03:00
GetOption get_option;
get_option.set_worker_id(worker_id);
worker_table->Get(data, size, &get_option);
2016-04-22 09:00:36 +03:00
});
2016-04-21 06:30:47 +03:00
}
void TestDensePerf(int argc, char* argv[]) {
2016-04-21 07:57:49 +03:00
TestmatrixPerformance<MatrixWorkerTable<float>, MatrixServerTable<float>>(argc,
2016-04-21 06:30:47 +03:00
argv,
[](int num_row, int num_col) {
2016-04-21 07:57:49 +03:00
return std::shared_ptr<MatrixWorkerTable<float>>(
new MatrixWorkerTable<float>(num_row, num_col));
2016-04-21 06:30:47 +03:00
},
[](int num_row, int num_col) {
2016-04-21 07:57:49 +03:00
return std::shared_ptr<MatrixServerTable<float>>(
new MatrixServerTable<float>(num_row, num_col));
2016-04-21 06:30:47 +03:00
},
2016-04-26 12:40:45 +03:00
[](const std::shared_ptr<MatrixWorkerTable<float>>& worker_table, const std::vector<int>& row_ids, const std::vector<float*>& data_vec, size_t size, const AddOption* option, const int worker_id) {
2016-04-21 06:30:47 +03:00
worker_table->Add(row_ids, data_vec, size, option);
},
2016-04-21 07:57:49 +03:00
[](const std::shared_ptr<MatrixWorkerTable<float>>& worker_table, float* data, size_t size, int worker_id) {
2016-04-21 06:30:47 +03:00
worker_table->Get(data, size);
});
}
2016-04-17 14:56:58 +03:00
2016-02-02 15:40:07 +03:00
int main(int argc, char* argv[]) {
Log::ResetLogLevel(LogLevel::Info);
2016-03-30 08:40:20 +03:00
if (argc == 1){
2016-04-17 14:56:58 +03:00
multiverso::MV_Init();
::testing::InitGoogleTest(&argc, argv);
auto res = RUN_ALL_TESTS();
multiverso::MV_ShutDown();
return res;
2016-04-21 14:52:35 +03:00
} else {
if (strcmp(argv[1], "kv") == 0) TestKV(argc, argv);
else if (strcmp(argv[1], "array") == 0) TestArray(argc, argv);
else if (strcmp(argv[1], "net") == 0) TestNet(argc, argv);
2016-02-19 05:46:07 +03:00
else if (strcmp(argv[1], "ip") == 0) TestIP();
else if (strcmp(argv[1], "matrix") == 0) TestMatrix(argc, argv);
else if (strcmp(argv[1], "checkpoint") == 0) TestCheckPoint(argc, argv, false);
else if (strcmp(argv[1], "restore") == 0) TestCheckPoint(argc, argv, true);
2016-04-17 14:56:58 +03:00
else if (strcmp(argv[1], "allreduce") == 0) TestAllreduce(argc, argv);
2016-04-21 06:30:47 +03:00
else if (strcmp(argv[1], "TestSparsePerf") == 0) TestSparsePerf(argc, argv);
else if (strcmp(argv[1], "TestDensePerf") == 0) TestDensePerf(argc, argv);
2016-02-02 15:40:07 +03:00
else CHECK(false);
}
2016-02-02 15:40:07 +03:00
return 0;
2016-02-26 09:36:38 +03:00
}