-
Notifications
You must be signed in to change notification settings - Fork 175
[BLAS::SYCL-BLAS backend] New BLAS backend: SYCL-BLAS #262
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
Merged
mkrainiuk
merged 20 commits into
uxlfoundation:develop
from
codeplaysoftware:sycl-blas-backend-staging
May 10, 2023
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
2631c14
[BLAS] New BLAS backend: SYCL-BLAS
hjabird 75e7e6e
Remove duplicate unsupported backend in backend map
hjabird 41686ab
Fix compile time dispatch testing when using sycl-blas
c190ee5
Enable rotmg
5ea3710
Fix issue in previous commit
090ba75
Re-enable Trsm
hjabird 147e75c
Change wording in docs and exception; fix typo;
hjabird 78b8667
Merge pull request #10 from codeplaysoftware/CT_fix
2d0e991
Sycl blas backend staging device support (#13)
Rbiessy 76680b6
Merge branch 'develop' into sycl-blas-backend-staging
Rbiessy 8a4e641
Revert change to disable OpenCL gpu devices
Rbiessy 5274a69
Update documentation
Rbiessy 1bdb5dd
[BLAS] Automate -fsycl-targets argument for SYCL-BLAS backend
andrewtbarker 4a67f62
Update documentation
Rbiessy bd956e4
Merge pull request #16 from andrewtbarker/fsycl-targets
mehdi-goli d843c52
Fix for CMake 3.16
Rbiessy 638d7ff
Add checks for compiler
Rbiessy b52d726
Merge branch 'develop' of https://github.com/oneapi-src/oneMKL into s…
muhammad-tanvir-1211 4e1d79e
Merge branch 'develop' of https://github.com/oneapi-src/oneMKL into s…
muhammad-tanvir-1211 15f558d
Merge branch 'develop' of https://github.com/oneapi-src/oneMKL into s…
muhammad-tanvir-1211 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
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
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,57 @@ | ||
| /*************************************************************************** | ||
| * Copyright (C) Codeplay Software Limited | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * For your convenience, a copy of the License has been included in this | ||
| * repository. | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| * | ||
| **************************************************************************/ | ||
|
|
||
| #ifndef _DETAIL_SYCLBLAS_BLAS_CT_HPP_ | ||
| #define _DETAIL_SYCLBLAS_BLAS_CT_HPP_ | ||
|
|
||
| #if __has_include(<sycl/sycl.hpp>) | ||
| #include <sycl/sycl.hpp> | ||
| #else | ||
| #include <CL/sycl.hpp> | ||
| #endif | ||
| #include <complex> | ||
| #include <cstdint> | ||
|
|
||
| #include "oneapi/mkl/types.hpp" | ||
| #include "oneapi/mkl/detail/backend_selector.hpp" | ||
| #include "oneapi/mkl/blas/detail/syclblas/onemkl_blas_syclblas.hpp" | ||
| #include "oneapi/mkl/blas/detail/blas_ct_backends.hpp" | ||
|
|
||
| namespace oneapi { | ||
| namespace mkl { | ||
| namespace blas { | ||
| namespace column_major { | ||
|
|
||
| #define MAJOR column_major | ||
| #include "blas_ct.hxx" | ||
| #undef MAJOR | ||
|
|
||
| } //namespace column_major | ||
| namespace row_major { | ||
|
|
||
| #define MAJOR row_major | ||
| #include "blas_ct.hxx" | ||
| #undef MAJOR | ||
|
|
||
| } //namespace row_major | ||
| } //namespace blas | ||
| } //namespace mkl | ||
| } //namespace oneapi | ||
|
|
||
| #endif //_DETAIL_SYCLBLAS_BLAS_CT_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.
Uh oh!
There was an error while loading. Please reload this page.