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

Added tests for error macros on GPU. #5962

Merged
merged 3 commits into from
Feb 21, 2025

Conversation

kjetilly
Copy link
Contributor

@kjetilly kjetilly commented Feb 6, 2025

Some simple tests for the new error macros defined in the opm-common PR 4465.

namespace {
__global__ void codeThatContainsMacros(bool call) {
if (call) {
OPM_THROW(std::logic_error, "Something went wrong");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think something has gone wrong with the macro that assess whether we are inside a GPU kernel or not, as I get an error on an AMD gpu as it expands the wrong macro from ErrorMacros.h. It should have expanded the macro on line 110 in ErrorMacros.hpp

opm-simulators/tests/gpuistl_hip/test_throw_macros_on_gpu.hip:32:9: error: no matching constructor for initialization of 'std::string' (aka 'basic_string')
32 | OPM_THROW(std::logic_error, "Something went wrong");
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
opm-common/opm/common/ErrorMacros.hpp:56:28: note: expanded from macro 'OPM_THROW'
56 | std::string oss_ = std::string{"["} + FILE + ":" + \

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minimal example that can not be compiled on HIP

#include <hip/hip_runtime.h>
#include

global void test_kernel() {
#if defined(CUDA_ARCH) || (defined(HIP_DEVICE_COMPILE) && HIP_DEVICE_COMPILE > 0)
printf("Hello from HIP kernel!\n");
#else
static_assert(false, "This should not be compiled for host");
#endif
}

int main(int, char**) {
test_kernel<<<1, 1>>>();
hipDeviceSynchronize();
return 0;
}

@kjetilly
Copy link
Contributor Author

I think this should now compile on HIPCC, @multitalentloes

@multitalentloes multitalentloes merged commit 44440d9 into OPM:master Feb 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants