-
Notifications
You must be signed in to change notification settings - Fork 118
Add Blas Concepts #2944
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
Open
yasahi-hpc
wants to merge
3
commits into
kokkos:develop
Choose a base branch
from
yasahi-hpc:add-blas-concepts
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add Blas Concepts #2944
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,23 @@ | ||
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| // SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project | ||
|
|
||
| #ifndef KOKKOSBLAS_CONCEPTS_HPP | ||
| #define KOKKOSBLAS_CONCEPTS_HPP | ||
|
|
||
| #include <concepts> | ||
| #include "KokkosBlas_util.hpp" | ||
|
|
||
| namespace KokkosBlas { | ||
|
|
||
| template <typename T> | ||
| concept TransposeOperation = is_trans_v<T>; | ||
|
|
||
| template <typename T> | ||
| concept BlasLevel2 = is_level2_v<T>; | ||
|
|
||
| template <typename T> | ||
| concept BlasLevel3 = is_level3_v<T>; | ||
|
|
||
| } // namespace KokkosBlas | ||
|
|
||
| #endif // KOKKOSBLAS_CONCEPTS_HPP |
This file contains hidden or 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 hidden or 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 hidden or 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,54 @@ | ||
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| // SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project | ||
| #ifndef TEST_BLAS_CONCEPTS_HPP | ||
| #define TEST_BLAS_CONCEPTS_HPP | ||
|
|
||
| #include <gtest/gtest.h> | ||
| #include "KokkosBlas_Concepts.hpp" | ||
| #include <KokkosKernels_TestUtils.hpp> | ||
|
|
||
| namespace Test { | ||
|
|
||
| template <KokkosBlas::TransposeOperation ArgTrans> | ||
| struct DummyFunctor {}; | ||
|
|
||
| void test_blas_concepts() { | ||
| // Check that the concepts compile for valid types | ||
| static_assert(KokkosBlas::TransposeOperation<KokkosBlas::Trans::Transpose>); | ||
| static_assert(KokkosBlas::TransposeOperation<KokkosBlas::Trans::NoTranspose>); | ||
| static_assert(KokkosBlas::TransposeOperation<KokkosBlas::Trans::ConjTranspose>); | ||
|
|
||
| // Check for level 2 concepts | ||
| static_assert(KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level2::Unblocked>); | ||
| static_assert(KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level2::Blocked>); | ||
| static_assert(KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level2::MKL>); | ||
| static_assert(KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level2::CompactMKL>); | ||
|
|
||
| static_assert(!KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level3::Unblocked>); | ||
| static_assert(!KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level3::Blocked>); | ||
| static_assert(!KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level3::MKL>); | ||
| static_assert(!KokkosBlas::BlasLevel2<KokkosBlas::Algo::Level3::CompactMKL>); | ||
|
|
||
| // Check for level 3 concepts | ||
| static_assert(KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level3::Unblocked>); | ||
| static_assert(KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level3::Blocked>); | ||
| static_assert(KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level3::MKL>); | ||
| static_assert(KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level3::CompactMKL>); | ||
|
|
||
| static_assert(!KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level2::Unblocked>); | ||
| static_assert(!KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level2::Blocked>); | ||
| static_assert(!KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level2::MKL>); | ||
| static_assert(!KokkosBlas::BlasLevel3<KokkosBlas::Algo::Level2::CompactMKL>); | ||
| } | ||
|
|
||
| void test_concepts_in_functor() { | ||
| [[maybe_unused]] DummyFunctor<KokkosBlas::Trans::NoTranspose> dummy_no_trans; | ||
| [[maybe_unused]] DummyFunctor<KokkosBlas::Trans::Transpose> dummy_trans; | ||
| [[maybe_unused]] DummyFunctor<KokkosBlas::Trans::ConjTranspose> dummy_conj_trans; | ||
| } | ||
| } // namespace Test | ||
|
|
||
| TEST_F(TestCategory, blas_concepts) { ::Test::test_blas_concepts(); } | ||
| TEST_F(TestCategory, concepts_in_functor) { ::Test::test_concepts_in_functor(); } | ||
|
|
||
| #endif // TEST_BLAS_CONCEPTS_HPP |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 add a test where we actually use the concept, i.e. create a dummy class/struct with a requirement close and observe that it goes well?
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 added a dummy functor to explain the typical use case in mind