Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recursive cholesky #710

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
8 changes: 8 additions & 0 deletions library/src/include/ideal_sizes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,14 @@
#define POTF2_MAX_SMALL_SIZE(T) ((sizeof(T) == 4) ? 180 : (sizeof(T) == 8) ? 127 : 90)
#endif

/*! \brief Determines the size at which recusive algorithm can terminate
\details
Assume there is last level cache that is at least 8 MBytes, so terminate recursion
at this level. */
#ifndef POTRF_STOPPING_NB
#define POTRF_STOPPING_NB(T) ((sizeof(T) == 4) ? 1408 : (sizeof(T) == 8) ? 1024 : 704)
#endif

/************************** syevj/heevj ***************************************
*******************************************************************************/
/*! \brief Determines the size at which rocSOLVER switches from
Expand Down
Loading