forked from alpaka-group/alpaka
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix alpaka-group#1472 Provide a type trait to remove __restrict__ from a type.
- Loading branch information
1 parent
c0510df
commit e1308c8
Showing
3 changed files
with
49 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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 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,40 @@ | ||
/* Copyright 2021 Rene Widera | ||
* | ||
* This file is part of alpaka. | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <alpaka/core/BoostPredef.hpp> | ||
|
||
namespace alpaka | ||
{ | ||
//! Removes __restrict__ from a type | ||
template<typename T> | ||
struct remove_restrict | ||
{ | ||
using type = T; | ||
}; | ||
|
||
#if BOOST_COMP_MSVC | ||
template<typename T> | ||
struct remove_restrict<T* __restrict> | ||
{ | ||
using type = T*; | ||
}; | ||
#else | ||
template<typename T> | ||
struct remove_restrict<T* __restrict__> | ||
{ | ||
using type = T*; | ||
}; | ||
#endif | ||
|
||
//! Helper to remove __restrict__ from a type | ||
template<typename T> | ||
using remove_restrict_t = typename remove_restrict<T>::type; | ||
} // namespace alpaka |
This file contains 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