BLIS GTestSuite fixes for ILP64.

- Adding doc regarding option setting for INT64 in README.
- Bugfix on template instantiation on helper function. Updated to use gtint_t instead of int.

AMD-Internal: [CPUPL-2732]
Change-Id: Ia52407a1ef3fdd06e905c2e3d4aa5befb80e82d6
This commit is contained in:
Eleni Vlachopoulou
2023-04-14 16:41:30 +05:30
committed by Eleni Vlachopoulou
parent 462f9e0012
commit ea484f38e6
2 changed files with 7 additions and 4 deletions

View File

@@ -485,10 +485,10 @@ template std::vector<double> testinghelpers::get_random_vector(int, int, gtint_t
template std::vector<scomplex> testinghelpers::get_random_vector(int, int, gtint_t, gtint_t, char);
template std::vector<dcomplex> testinghelpers::get_random_vector(int, int, gtint_t, gtint_t, char);
template std::vector<float> testinghelpers::get_vector(int, gtint_t, float);
template std::vector<double> testinghelpers::get_vector(int, gtint_t, double);
template std::vector<scomplex> testinghelpers::get_vector(int, gtint_t, scomplex);
template std::vector<dcomplex> testinghelpers::get_vector(int, gtint_t, dcomplex);
template std::vector<float> testinghelpers::get_vector(gtint_t, gtint_t, float);
template std::vector<double> testinghelpers::get_vector(gtint_t, gtint_t, double);
template std::vector<scomplex> testinghelpers::get_vector(gtint_t, gtint_t, scomplex);
template std::vector<dcomplex> testinghelpers::get_vector(gtint_t, gtint_t, dcomplex);
template std::vector<float> testinghelpers::get_matrix( char, char, gtint_t, gtint_t, gtint_t, float );
template std::vector<double> testinghelpers::get_matrix( char, char, gtint_t, gtint_t, gtint_t, double );