2015-10-22 23:54:34 +02:00
|
|
|
/**********************************************************************
|
|
|
|
Copyright(c) 2011-2015 Intel Corporation All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
2017-05-31 03:28:57 +02:00
|
|
|
modification, are permitted provided that the following conditions
|
2015-10-22 23:54:34 +02:00
|
|
|
are met:
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the
|
|
|
|
distribution.
|
|
|
|
* Neither the name of Intel Corporation nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2024-04-19 18:08:53 +02:00
|
|
|
#include <string.h> // for memset, memcmp
|
2015-10-22 23:54:34 +02:00
|
|
|
#include "erasure_code.h"
|
|
|
|
#include "test.h"
|
|
|
|
|
2022-08-04 01:35:55 +02:00
|
|
|
#ifndef GT_L3_CACHE
|
2024-04-19 18:08:53 +02:00
|
|
|
#define GT_L3_CACHE 32 * 1024 * 1024 /* some number > last level cache */
|
2022-08-04 01:35:55 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(COLD_TEST) && !defined(TEST_CUSTOM)
|
2015-10-22 23:54:34 +02:00
|
|
|
// Cached test, loop many times over small dataset
|
2024-04-19 18:08:53 +02:00
|
|
|
#define TEST_SOURCES 32
|
|
|
|
#define TEST_LEN(m) ((128 * 1024 / m) & ~(64 - 1))
|
|
|
|
#define TEST_TYPE_STR "_warm"
|
|
|
|
#elif defined(COLD_TEST)
|
2015-10-22 23:54:34 +02:00
|
|
|
// Uncached test. Pull from large mem base.
|
2024-04-19 18:08:53 +02:00
|
|
|
#define TEST_SOURCES 32
|
|
|
|
#define TEST_LEN(m) ((GT_L3_CACHE / m) & ~(64 - 1))
|
|
|
|
#define TEST_TYPE_STR "_cold"
|
|
|
|
#elif defined(TEST_CUSTOM)
|
|
|
|
#define TEST_TYPE_STR "_cus"
|
2015-10-22 23:54:34 +02:00
|
|
|
#endif
|
2023-11-09 18:33:41 +01:00
|
|
|
#ifndef TEST_SEED
|
2024-04-19 18:08:53 +02:00
|
|
|
#define TEST_SEED 0x1234
|
2023-11-09 18:33:41 +01:00
|
|
|
#endif
|
2015-10-22 23:54:34 +02:00
|
|
|
|
|
|
|
#define MMAX TEST_SOURCES
|
|
|
|
#define KMAX TEST_SOURCES
|
|
|
|
|
2019-01-22 23:38:26 +01:00
|
|
|
#define BAD_MATRIX -1
|
|
|
|
|
2015-10-22 23:54:34 +02:00
|
|
|
typedef unsigned char u8;
|
|
|
|
|
2024-04-19 18:08:53 +02:00
|
|
|
void
|
|
|
|
usage(const char *app_name)
|
2023-11-09 18:33:41 +01:00
|
|
|
{
|
2024-04-19 18:08:53 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"Usage: %s [options]\n"
|
|
|
|
" -h Help\n"
|
|
|
|
" -k <val> Number of source buffers\n"
|
|
|
|
" -p <val> Number of parity buffers\n"
|
|
|
|
" -e <val> Number of simulated buffers with errors (cannot be higher than p or "
|
|
|
|
"k)\n",
|
|
|
|
app_name);
|
2023-11-09 18:33:41 +01:00
|
|
|
}
|
|
|
|
|
2024-04-19 18:08:53 +02:00
|
|
|
void
|
|
|
|
ec_encode_perf(int m, int k, u8 *a, u8 *g_tbls, u8 **buffs, struct perf *start)
|
2019-01-22 23:38:26 +01:00
|
|
|
{
|
2024-04-19 18:08:53 +02:00
|
|
|
ec_init_tables(k, m - k, &a[k * k], g_tbls);
|
|
|
|
BENCHMARK(start, BENCHMARK_TIME,
|
|
|
|
ec_encode_data(TEST_LEN(m), k, m - k, g_tbls, buffs, &buffs[k]));
|
2019-01-22 23:38:26 +01:00
|
|
|
}
|
|
|
|
|
2024-04-19 18:08:53 +02:00
|
|
|
int
|
|
|
|
ec_decode_perf(int m, int k, u8 *a, u8 *g_tbls, u8 **buffs, u8 *src_in_err, u8 *src_err_list,
|
|
|
|
int nerrs, u8 **temp_buffs, struct perf *start)
|
2019-01-22 23:38:26 +01:00
|
|
|
{
|
2024-04-19 18:08:53 +02:00
|
|
|
int i, j, r;
|
|
|
|
u8 b[MMAX * KMAX], c[MMAX * KMAX], d[MMAX * KMAX];
|
|
|
|
u8 *recov[TEST_SOURCES];
|
|
|
|
|
|
|
|
// Construct b by removing error rows
|
|
|
|
for (i = 0, r = 0; i < k; i++, r++) {
|
|
|
|
while (src_in_err[r])
|
|
|
|
r++;
|
|
|
|
recov[i] = buffs[r];
|
|
|
|
for (j = 0; j < k; j++)
|
|
|
|
b[k * i + j] = a[k * r + j];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gf_invert_matrix(b, d, k) < 0)
|
|
|
|
return BAD_MATRIX;
|
|
|
|
|
|
|
|
for (i = 0; i < nerrs; i++)
|
|
|
|
for (j = 0; j < k; j++)
|
|
|
|
c[k * i + j] = d[k * src_err_list[i] + j];
|
|
|
|
|
|
|
|
// Recover data
|
|
|
|
ec_init_tables(k, nerrs, c, g_tbls);
|
|
|
|
BENCHMARK(start, BENCHMARK_TIME,
|
|
|
|
ec_encode_data(TEST_LEN(m), k, nerrs, g_tbls, recov, temp_buffs));
|
|
|
|
|
|
|
|
return 0;
|
2019-01-22 23:38:26 +01:00
|
|
|
}
|
|
|
|
|
2024-04-19 18:08:53 +02:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
2015-10-22 23:54:34 +02:00
|
|
|
{
|
2024-04-19 18:08:53 +02:00
|
|
|
int i, j, m, k, p, nerrs, check, ret = -1;
|
|
|
|
void *buf;
|
|
|
|
u8 *temp_buffs[TEST_SOURCES] = { NULL };
|
|
|
|
u8 *buffs[TEST_SOURCES] = { NULL };
|
|
|
|
u8 a[MMAX * KMAX];
|
|
|
|
u8 g_tbls[KMAX * TEST_SOURCES * 32], src_in_err[TEST_SOURCES];
|
|
|
|
u8 src_err_list[TEST_SOURCES];
|
|
|
|
struct perf start;
|
|
|
|
|
|
|
|
/* Set default parameters */
|
|
|
|
k = 8;
|
|
|
|
p = 6;
|
|
|
|
nerrs = 4;
|
|
|
|
|
|
|
|
/* Parse arguments */
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (strcmp(argv[i], "-k") == 0) {
|
|
|
|
k = atoi(argv[++i]);
|
|
|
|
} else if (strcmp(argv[i], "-p") == 0) {
|
|
|
|
p = atoi(argv[++i]);
|
|
|
|
} else if (strcmp(argv[i], "-e") == 0) {
|
|
|
|
nerrs = atoi(argv[++i]);
|
|
|
|
} else if (strcmp(argv[i], "-h") == 0) {
|
|
|
|
usage(argv[0]);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
usage(argv[0]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nerrs > k) {
|
|
|
|
printf("Number of errors (%d) cannot be higher than number of data buffers (%d)\n",
|
|
|
|
nerrs, k);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k <= 0) {
|
|
|
|
printf("Number of source buffers (%d) must be > 0\n", k);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p <= 0) {
|
|
|
|
printf("Number of parity buffers (%d) must be > 0\n", p);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nerrs <= 0) {
|
|
|
|
printf("Number of errors (%d) must be > 0\n", nerrs);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nerrs > p) {
|
|
|
|
printf("Number of errors (%d) cannot be higher than number of parity buffers "
|
|
|
|
"(%d)\n",
|
|
|
|
nerrs, p);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
m = k + p;
|
|
|
|
|
|
|
|
if (m > MMAX) {
|
|
|
|
printf("Number of total buffers (data and parity) cannot be higher than %d\n",
|
|
|
|
MMAX);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 *err_list = malloc((size_t) nerrs);
|
|
|
|
if (err_list == NULL) {
|
|
|
|
printf("Error allocating list of array of error indices\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
srand(TEST_SEED);
|
|
|
|
|
|
|
|
for (i = 0; i < nerrs;) {
|
|
|
|
u8 next_err = rand() % k;
|
|
|
|
for (j = 0; j < i; j++)
|
|
|
|
if (next_err == err_list[j])
|
|
|
|
break;
|
|
|
|
if (j != i)
|
|
|
|
continue;
|
|
|
|
err_list[i++] = next_err;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Testing with %u data buffers and %u parity buffers (num errors = %u, in [ ", k, p,
|
|
|
|
nerrs);
|
|
|
|
for (i = 0; i < nerrs; i++)
|
|
|
|
printf("%d ", (int) err_list[i]);
|
|
|
|
|
|
|
|
printf("])\n");
|
|
|
|
|
|
|
|
printf("erasure_code_perf: %dx%d %d\n", m, TEST_LEN(m), nerrs);
|
|
|
|
|
|
|
|
memcpy(src_err_list, err_list, nerrs);
|
|
|
|
memset(src_in_err, 0, TEST_SOURCES);
|
|
|
|
for (i = 0; i < nerrs; i++)
|
|
|
|
src_in_err[src_err_list[i]] = 1;
|
|
|
|
|
|
|
|
// Allocate the arrays
|
|
|
|
for (i = 0; i < m; i++) {
|
|
|
|
if (posix_memalign(&buf, 64, TEST_LEN(m))) {
|
|
|
|
printf("Error allocating buffers\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
buffs[i] = buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < p; i++) {
|
|
|
|
if (posix_memalign(&buf, 64, TEST_LEN(m))) {
|
|
|
|
printf("Error allocating buffers\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
temp_buffs[i] = buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make random data
|
|
|
|
for (i = 0; i < k; i++)
|
|
|
|
for (j = 0; j < TEST_LEN(m); j++)
|
|
|
|
buffs[i][j] = rand();
|
|
|
|
|
|
|
|
gf_gen_rs_matrix(a, m, k);
|
|
|
|
|
|
|
|
// Start encode test
|
|
|
|
ec_encode_perf(m, k, a, g_tbls, buffs, &start);
|
|
|
|
printf("erasure_code_encode" TEST_TYPE_STR ": ");
|
|
|
|
perf_print(start, (long long) (TEST_LEN(m)) * (m));
|
|
|
|
|
|
|
|
// Start decode test
|
|
|
|
check = ec_decode_perf(m, k, a, g_tbls, buffs, src_in_err, src_err_list, nerrs, temp_buffs,
|
|
|
|
&start);
|
|
|
|
|
|
|
|
if (check == BAD_MATRIX) {
|
|
|
|
printf("BAD MATRIX\n");
|
|
|
|
ret = check;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < nerrs; i++) {
|
|
|
|
if (0 != memcmp(temp_buffs[i], buffs[src_err_list[i]], TEST_LEN(m))) {
|
|
|
|
printf("Fail error recovery (%d, %d, %d) - ", m, k, nerrs);
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("erasure_code_decode" TEST_TYPE_STR ": ");
|
|
|
|
perf_print(start, (long long) (TEST_LEN(m)) * (k + nerrs));
|
|
|
|
|
|
|
|
printf("done all: Pass\n");
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
free(err_list);
|
|
|
|
for (i = 0; i < TEST_SOURCES; i++) {
|
|
|
|
free(buffs[i]);
|
|
|
|
free(temp_buffs[i]);
|
|
|
|
}
|
|
|
|
return ret;
|
2015-10-22 23:54:34 +02:00
|
|
|
}
|