mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 22:17:57 -05:00
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
/*
|
|
* SubDataFilesBase.cpp
|
|
*
|
|
*/
|
|
|
|
#include "PrepBase.h"
|
|
|
|
#include "Data_Files.h"
|
|
|
|
string PrepBase::get_suffix(int thread_num)
|
|
{
|
|
#ifdef INSECURE
|
|
(void) thread_num;
|
|
return "";
|
|
#else
|
|
if (thread_num >= 0)
|
|
return "-T" + to_string(thread_num);
|
|
else
|
|
return "";
|
|
#endif
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|