cuElim/include/gf256/gf256_elim.cuh
2024-09-06 15:58:40 +08:00

11 lines
122 B
Plaintext

#ifndef ELIMINATION_CUH
#define ELIMINATION_CUH
#include "gf256_mat.cuh"
struct ElimResult
{
size_t rank;
};
#endif