-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Divide & Conquer + Jacobi (part 2) (#643)
* prepare stedc to use other solvers * fix synchronization issues * address review comments * define APIs and add documentation * add syevdj/heevdj * add test infrastructure for syevdj/heevdj * fix test bug * add batched versions * enable jacobi solver in stedc * fix single-block case * fix synchronization problems * fix synchronization problems * clean up * add sygvdj/hegvdj * clean up * update changelog * fix synch problem showing on gfx1101 * addressed review comments
- Loading branch information
1 parent
3f93f5b
commit f8b1f3c
Showing
27 changed files
with
6,070 additions
and
747 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* ************************************************************************ | ||
* Copyright (C) 2023 Advanced Micro Devices, Inc. All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* | ||
* 2. 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. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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 <testing_syevdj_heevdj.hpp> | ||
|
||
#define TESTING_SYEVDJ_HEEVDJ(...) template void testing_syevdj_heevdj<__VA_ARGS__>(Arguments&); | ||
|
||
INSTANTIATE(TESTING_SYEVDJ_HEEVDJ, FOREACH_MATRIX_DATA_LAYOUT, FOREACH_SCALAR_TYPE, APPLY_STAMP) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* ************************************************************************ | ||
* Copyright (C) 2023 Advanced Micro Devices, Inc. All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* | ||
* 2. 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. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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 <testing_sygvdj_hegvdj.hpp> | ||
|
||
#define TESTING_SYGVDJ_HEGVDJ(...) template void testing_sygvdj_hegvdj<__VA_ARGS__>(Arguments&); | ||
|
||
INSTANTIATE(TESTING_SYGVDJ_HEGVDJ, FOREACH_MATRIX_DATA_LAYOUT, FOREACH_SCALAR_TYPE, APPLY_STAMP) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
/* ************************************************************************ | ||
* Copyright (C) 2023 Advanced Micro Devices, Inc. All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* | ||
* 2. 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. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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 "testing_syevdj_heevdj.hpp" | ||
|
||
using ::testing::Combine; | ||
using ::testing::TestWithParam; | ||
using ::testing::Values; | ||
using ::testing::ValuesIn; | ||
using namespace std; | ||
|
||
typedef std::tuple<vector<int>, vector<printable_char>> syevdj_heevdj_tuple; | ||
|
||
// each size_range vector is a {n, lda} | ||
|
||
// each op_range vector is a {evect, uplo} | ||
|
||
// case when n == 0, evect == N, and uplo = L will also execute the bad arguments test | ||
// (null handle, null pointers and invalid values) | ||
|
||
const vector<vector<printable_char>> op_range = {{'N', 'L'}, {'N', 'U'}, {'V', 'L'}, {'V', 'U'}}; | ||
|
||
// for checkin_lapack tests | ||
const vector<vector<int>> size_range = { | ||
// quick return | ||
{0, 1}, | ||
// invalid | ||
{-1, 1}, | ||
{10, 5}, | ||
// normal (valid) samples | ||
{1, 1}, | ||
{12, 12}, | ||
{20, 30}, | ||
{36, 36}, | ||
{50, 60}}; | ||
|
||
// for daily_lapack tests | ||
const vector<vector<int>> large_size_range = {{192, 192}, {256, 270}, {300, 300}}; | ||
|
||
Arguments syevdj_heevdj_setup_arguments(syevdj_heevdj_tuple tup) | ||
{ | ||
vector<int> size = std::get<0>(tup); | ||
vector<printable_char> op = std::get<1>(tup); | ||
|
||
Arguments arg; | ||
|
||
arg.set<rocblas_int>("n", size[0]); | ||
arg.set<rocblas_int>("lda", size[1]); | ||
|
||
arg.set<char>("evect", op[0]); | ||
arg.set<char>("uplo", op[1]); | ||
|
||
// only testing standard use case/defaults for strides | ||
|
||
arg.timing = 0; | ||
|
||
return arg; | ||
} | ||
|
||
class SYEVDJ_HEEVDJ : public ::TestWithParam<syevdj_heevdj_tuple> | ||
{ | ||
protected: | ||
void TearDown() override | ||
{ | ||
EXPECT_EQ(hipGetLastError(), hipSuccess); | ||
} | ||
|
||
template <bool BATCHED, bool STRIDED, typename T> | ||
void run_tests() | ||
{ | ||
Arguments arg = syevdj_heevdj_setup_arguments(GetParam()); | ||
|
||
if(arg.peek<rocblas_int>("n") == 0 && arg.peek<char>("evect") == 'N' | ||
&& arg.peek<char>("uplo") == 'L') | ||
testing_syevdj_heevdj_bad_arg<BATCHED, STRIDED, T>(); | ||
|
||
arg.batch_count = (BATCHED || STRIDED ? 3 : 1); | ||
testing_syevdj_heevdj<BATCHED, STRIDED, T>(arg); | ||
} | ||
}; | ||
|
||
class SYEVDJ : public SYEVDJ_HEEVDJ | ||
{ | ||
}; | ||
|
||
class HEEVDJ : public SYEVDJ_HEEVDJ | ||
{ | ||
}; | ||
|
||
// non-batch tests | ||
|
||
TEST_P(SYEVDJ, __float) | ||
{ | ||
run_tests<false, false, float>(); | ||
} | ||
|
||
TEST_P(SYEVDJ, __double) | ||
{ | ||
run_tests<false, false, double>(); | ||
} | ||
|
||
TEST_P(HEEVDJ, __float_complex) | ||
{ | ||
run_tests<false, false, rocblas_float_complex>(); | ||
} | ||
|
||
TEST_P(HEEVDJ, __double_complex) | ||
{ | ||
run_tests<false, false, rocblas_double_complex>(); | ||
} | ||
|
||
// batched tests | ||
|
||
TEST_P(SYEVDJ, batched__float) | ||
{ | ||
run_tests<true, true, float>(); | ||
} | ||
|
||
TEST_P(SYEVDJ, batched__double) | ||
{ | ||
run_tests<true, true, double>(); | ||
} | ||
|
||
TEST_P(HEEVDJ, batched__float_complex) | ||
{ | ||
run_tests<true, true, rocblas_float_complex>(); | ||
} | ||
|
||
TEST_P(HEEVDJ, batched__double_complex) | ||
{ | ||
run_tests<true, true, rocblas_double_complex>(); | ||
} | ||
|
||
// strided_batched tests | ||
|
||
TEST_P(SYEVDJ, strided_batched__float) | ||
{ | ||
run_tests<false, true, float>(); | ||
} | ||
|
||
TEST_P(SYEVDJ, strided_batched__double) | ||
{ | ||
run_tests<false, true, double>(); | ||
} | ||
|
||
TEST_P(HEEVDJ, strided_batched__float_complex) | ||
{ | ||
run_tests<false, true, rocblas_float_complex>(); | ||
} | ||
|
||
TEST_P(HEEVDJ, strided_batched__double_complex) | ||
{ | ||
run_tests<false, true, rocblas_double_complex>(); | ||
} | ||
|
||
// daily_lapack tests normal execution with medium to large sizes | ||
INSTANTIATE_TEST_SUITE_P(daily_lapack, | ||
SYEVDJ, | ||
Combine(ValuesIn(large_size_range), ValuesIn(op_range))); | ||
|
||
INSTANTIATE_TEST_SUITE_P(daily_lapack, | ||
HEEVDJ, | ||
Combine(ValuesIn(large_size_range), ValuesIn(op_range))); | ||
|
||
// checkin_lapack tests normal execution with small sizes, invalid sizes, | ||
// quick returns, and corner cases | ||
INSTANTIATE_TEST_SUITE_P(checkin_lapack, SYEVDJ, Combine(ValuesIn(size_range), ValuesIn(op_range))); | ||
|
||
INSTANTIATE_TEST_SUITE_P(checkin_lapack, HEEVDJ, Combine(ValuesIn(size_range), ValuesIn(op_range))); |
Oops, something went wrong.