This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port as_const to be usable in device code
- Loading branch information
Showing
8 changed files
with
85 additions
and
14 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
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
23 changes: 23 additions & 0 deletions
23
.upstream-tests/test/std/utilities/utility/as_const/as_const.fail.cpp
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,23 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// UNSUPPORTED: c++98, c++03, c++11 | ||
|
||
// template <class T> constexpr add_const<T>& as_const(T& t) noexcept; // C++17 | ||
// template <class T> add_const<T>& as_const(const T&&) = delete; // C++17 | ||
|
||
#include <cuda/std/utility> | ||
|
||
struct S {int i;}; | ||
|
||
int main(int, char**) | ||
{ | ||
cuda::std::as_const(S{}); | ||
|
||
return 0; | ||
} |
52 changes: 52 additions & 0 deletions
52
.upstream-tests/test/std/utilities/utility/as_const/as_const.pass.cpp
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,52 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// UNSUPPORTED: c++98, c++03, c++11 | ||
|
||
// template <class T> constexpr add_const<T>& as_const(T& t) noexcept; // C++17 | ||
// template <class T> add_const<T>& as_const(const T&&) = delete; // C++17 | ||
|
||
#include <cuda/std/cassert> | ||
#include <cuda/std/utility> | ||
|
||
#include "test_macros.h" | ||
|
||
struct S {int i;}; | ||
__host__ __device__ | ||
bool operator==(const S& x, const S& y) { return x.i == y.i; } | ||
__host__ __device__ | ||
bool operator==(const volatile S& x, const volatile S& y) { return x.i == y.i; } | ||
|
||
template<typename T> | ||
__host__ __device__ | ||
void test(T& t) | ||
{ | ||
static_assert(cuda::std::is_const<typename cuda::std::remove_reference<decltype(cuda::std::as_const (t))>::type>::value, ""); | ||
static_assert(cuda::std::is_const<typename cuda::std::remove_reference<decltype(cuda::std::as_const< T>(t))>::type>::value, ""); | ||
static_assert(cuda::std::is_const<typename cuda::std::remove_reference<decltype(cuda::std::as_const<const T>(t))>::type>::value, ""); | ||
static_assert(cuda::std::is_const<typename cuda::std::remove_reference<decltype(cuda::std::as_const<volatile T>(t))>::type>::value, ""); | ||
static_assert(cuda::std::is_const<typename cuda::std::remove_reference<decltype(cuda::std::as_const<const volatile T>(t))>::type>::value, ""); | ||
|
||
assert(cuda::std::as_const(t) == t); | ||
assert(cuda::std::as_const< T>(t) == t); | ||
assert(cuda::std::as_const<const T>(t) == t); | ||
assert(cuda::std::as_const<volatile T>(t) == t); | ||
assert(cuda::std::as_const<const volatile T>(t) == t); | ||
} | ||
|
||
int main(int, char**) | ||
{ | ||
int i = 3; | ||
double d = 4.0; | ||
S s{2}; | ||
test(i); | ||
test(d); | ||
test(s); | ||
|
||
return 0; | ||
} |
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
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