Skip to content
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

Disable exceptions when used in CUDA code #79

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/mpark/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
#define MPARK_CPP14_CONSTEXPR
#endif

#if __has_feature(cxx_exceptions) || defined(__cpp_exceptions) || \
#if (__has_feature(cxx_exceptions) || defined(__cpp_exceptions) || \
(defined(_MSC_VER) && defined(_CPPUNWIND)) || \
defined(__EXCEPTIONS)
defined(__EXCEPTIONS)) && !defined(__CUDA_ARCH__)
#define MPARK_EXCEPTIONS
#endif

Expand Down
8 changes: 7 additions & 1 deletion include/mpark/variant.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,15 @@ namespace mpark {
virtual const char *what() const noexcept override { return "bad_variant_access"; }
};

[[noreturn]] inline void throw_bad_variant_access() {
[[noreturn]]
#ifdef __CUDACC__
__host__ __device__
#endif
inline void throw_bad_variant_access() {
#ifdef MPARK_EXCEPTIONS
throw bad_variant_access{};
#elif defined(__CUDA_ARCH__)
__trap();
#else
std::terminate();
MPARK_BUILTIN_UNREACHABLE;
Expand Down