/* Regression Test for the second Cauchy Reed Solomon Encoder and Decoder Copyright 2024 Ahmet Inan */ #include #include #include #include #include #include #include "prime_field.hh" #include "cauchy_reed_solomon_erasure_coding2.hh" template void crs_test(int trials) { int value_bits = log2(PRIME); int value_bytes = value_bits / 8; typedef CODE::PrimeField PF; CODE::CauchyReedSolomonErasureCoding2 crs; std::random_device rd; std::default_random_engine generator(rd()); typedef std::uniform_int_distribution distribution; auto rnd_cnt = std::bind(distribution(1, std::min(PF::P / 4, 256)), generator); auto rnd_len = std::bind(distribution(1, 1 << 10), generator); auto rnd_dat = std::bind(distribution(0, (1 << value_bits) - 1), generator); while (--trials) { int block_count = rnd_cnt(); int identifiers_total = PF::P / 2 - block_count; int block_values = rnd_len(); int block_bytes = block_values * value_bytes; int data_values = block_count * block_values; int data_bytes = data_values * value_bytes; PF *orig = new PF[data_values]; PF *data = new PF[data_values]; PF *blocks = new PF[data_values]; for (int i = 0; i < data_values; ++i) orig[i] = PF(rnd_dat()); auto identifiers = new PF[identifiers_total]; for (int i = 0; i < identifiers_total; ++i) identifiers[i] = PF(block_count + i); for (int i = 0; i < block_count; i++) { std::uniform_int_distribution hat(i, identifiers_total - 1); std::swap(identifiers[i], identifiers[hat(generator)]); } auto enc_start = std::chrono::system_clock::now(); for (int i = 0; i < block_count; ++i) crs.encode(orig, blocks + block_values * i, identifiers[i](), block_values, block_count); auto enc_end = std::chrono::system_clock::now(); auto enc_usec = std::chrono::duration_cast(enc_end - enc_start); double enc_mbs = double(data_bytes) / enc_usec.count(); auto dec_start = std::chrono::system_clock::now(); for (int i = 0; i < block_count; ++i) crs.decode(data + block_values * i, blocks, identifiers, i, block_values, block_count); auto dec_end = std::chrono::system_clock::now(); auto dec_usec = std::chrono::duration_cast(dec_end - dec_start); double dec_mbs = double(data_bytes) / dec_usec.count(); std::cout << "block count = " << block_count << ", block size = " << block_bytes << " bytes, encoding speed = " << enc_mbs << " megabyte per second, decoding speed = " << dec_mbs << " megabyte per second" << std::endl; for (int i = 0; i < data_values; ++i) assert(data[i] == orig[i]); delete[] identifiers; delete[] blocks; delete[] orig; delete[] data; } } int main() { if (1) { crs_test(200); } if (1) { crs_test(100); } std::cerr << "Cauchy Reed Solomon Two regression test passed!" << std::endl; return 0; }