-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add syclSolverInverter to use oneMKL on Intel GPUs #7
base: sycl-allocator
Are you sure you want to change the base?
Conversation
const size_t m_max = ((m + tile_size - 1) / tile_size) * tile_size; | ||
const size_t n_max = ((n + tile_size - 1) / tile_size) * tile_size; | ||
|
||
return q.submit([&](sycl::handler& cgh) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you remove all handler and use the compact form of q.parallel_for with events.
int n, | ||
int lda, | ||
const TMAT* a, | ||
const INDEX* pivot, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likely we should just hard-code int64_t
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't feel it is better than what CUDA/HIP does due to its blocking nature. CUDA code path just transfer the pivot and diagonal terms to host asynchronously.
{ | ||
const int N = 911; | ||
|
||
#ifdef MIXED_PRECISION |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove ifdef and always test both?
A python script (using autograd) is used to generate reference values for the values of the wavefunction and derivatives at one point in space. The test system is a helium atom with two orbitals and optionally a Jastrow factor.
Add tests for Rotated SPOs using LCAO
Update bora test scripts and remove unused test scripts
The gen_rotated_lcao_wf.py file is extended to generate QMC averages for the parameter gradients. A test for the legacy driver using one thread is introduced.
Do not use cudaDeviceProp maxTexture1D in HIP
Add orbital rotation test with legacy driver
For CI running on nitrogen
Add MPI support to ROCm legacy CI
Rewrite loop to workaround NVHPC bugs
Remove omp parallel over walkers
Add mock-up mw_accept_rejectMove in MSD.
…lone_warning Drop standalone-debug for offload builds
Fix test_structure divide by 0
only use this overload if semantically correct
Please review the developer documentation
on the wiki of this project that contains help and requirements.
Proposed changes
Add syclColverInveter and support functions in Platforms/SYCL.
What type(s) of changes does this code introduce?
Does this introduce a breaking change?
What systems has this change been tested on?
Checklist