Files
MP-SPDZ/Processor/PrepBase.cpp
Marcel Keller 32950fe8d4 Maintenance.
2021-11-04 16:24:34 +11:00

55 lines
1.4 KiB
C++

/*
* SubDataFilesBase.cpp
*
*/
#include "PrepBase.h"
#include "Data_Files.h"
string PrepBase::get_suffix(int thread_num)
{
(void) thread_num;
return "";
}
string PrepBase::get_filename(const string& prep_data_dir,
Dtype dtype, const string& type_short, int my_num, int thread_num)
{
return prep_data_dir + DataPositions::dtype_names[dtype] + "-" + type_short
+ "-P" + to_string(my_num) + get_suffix(thread_num);
}
string PrepBase::get_input_filename(const string& prep_data_dir,
const string& type_short, int input_player, int my_num, int thread_num)
{
return prep_data_dir + "Inputs-" + type_short + "-P" + to_string(my_num)
+ "-" + to_string(input_player) + get_suffix(thread_num);
}
string PrepBase::get_edabit_filename(const string& prep_data_dir,
int n_bits, int my_num, int thread_num)
{
return prep_data_dir + "edaBits-" + to_string(n_bits) + "-P"
+ to_string(my_num) + get_suffix(thread_num);
}
void PrepBase::print_left(const char* name, size_t n, const string& type_string)
{
if (n > 0)
cerr << "\t" << n << " " << name << " of " << type_string << " left"
<< endl;
}
void PrepBase::print_left_edabits(size_t n, size_t n_batch, bool strict,
int n_bits)
{
if (n > 0)
{
cerr << "\t~" << n * n_batch;
if (not strict)
cerr << " loose";
cerr << " edaBits of size " << n_bits << " left" << endl;
}
}