-
Notifications
You must be signed in to change notification settings - Fork 158
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
Rename oneMKL Interface to oneMath #602
base: develop
Are you sure you want to change the base?
Conversation
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.
That's an immense amount of work, well done! I only found a few missed occurrences.
I merged the PR with the develop branch and the clang-format-19.10 changes which reduces the diff. |
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.
These are a lot of changes for one PR!. Mostly they look fine with what was discussed in the RFC and spce change. However I have a few question in my review.
The conflicts are mostly due to the recent PR for cuSPARSE support. I will work on fixing them but the other domains can still be reviewed. |
Thanks for doing this huge work! |
Yes I have used |
ok. Thanks. Just wanted to make sure that we don't accidentally miss important information |
@oneapi-src/onemkl-sparse-write I have updated the PR to fix the conflicts with the cuSPARSE PR. It would be useful if you can review the sparse related changes in this PR before the rocSPARSE PR #544! |
I fixed some more recent conflicts. |
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.
BLAS changes look good to me.
oneAPI DPC++ Compiler or open-source oneAPI DPC++ Compiler. For guidance on | ||
building the project with AdaptiveCpp, see | ||
:ref:`building_the_project_with_adaptivecpp`. | ||
This page describes building the oneMath with either the Intel(R) oneAPI DPC++ |
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.
This page describes building the oneMath with either the Intel(R) oneAPI DPC++ | |
This page describes building oneMath with either the Intel(R) oneAPI DPC++ |
/intelci: run |
Description
Related RFC: #564 and related spec PR: uxlfoundation/oneAPI-spec#596
As a reminder the plan is to have this PR and the spec PR approved before we move this repository to https://github.com/uxlfoundation and merge the 2 PRs.
src/include/common_onemkl_conversion.hpp
to convert oneMath common types to oneMKL types. This wasn't needed before as the backends relied on the 2 projects to use the same namespace. The file also provide helper macros to catch oneMKL exceptions and rethrow them as oneMath exceptions.oneapi::mkl
exceptions when committing a descriptor. We discussed this issue by email recently. With the changes needed by the renaming, we now catch and rethrow all the exceptions asoneapi::math
exceptions and I was able to remove a related workaround in the tests (FYI @oneapi-src/onemkl-dft-write). Also see related discussion below: Rename oneMKL Interface to oneMath #602 (comment)onemkl_distribution_conversion.hpp
to convert the RNG types and call the backend's free functions such asoneapi::mkl::rng::generate
,oneapi::mkl::rng::skip_ahead
. @oneapi-src/onemkl-rng-write you may want to carefully reviewsrc/rng/backends/mklgpu/
as I am not familiar with the RNG domain.@oneapi-src/onemkl-*
will be renamed (or duplicated) to@uxlfoundation/onemath-*
in the new repository (@rscohn2 FYI)onemkl
Slack channel will be renamed toonemath
(@rodburns FYI)USE_MKLREF
which was only used in Lapack tests and was not documented. This macro wouldn't work easily with the namespace change anymore (@oneapi-src/onemkl-lapack-write FYI)MKLCPU
andMKLGPU
.oneapi::mkl
inside the Intel backends.cmake/mkl/MKLConfig.cmake
(could probably be removed IMO).include/oneapi/mkl
for deprecated headers and deprecatedoneapi::mkl
C++ namespace.MKLCPU
andMKLGPU
backends use "mkl" in their name. They could be updated to onemkl if needed.Checklist
All Submissions