Nvc++ up to 22.7: Undefined reference to __builtin_is_device_code for empty if target() paths

Consider the following code:

#include <nv/target>

void mem_fence() {
  if target(nv::target::is_device){
    __threadfence();
  }
  if target(nv::target::is_host){
    
  }
}

__global__ void invoke(){
  mem_fence();
}

int main(){
  invoke<<<1,1>>>();
}

and compile with nvc++ -cuda -o test test.cpp.

With all nvc++ versions we have tried up to 22.7 (21.7, 22.2, 22.7), this results in a linker error:

/usr/bin/ld: /tmp/nvc++eZ0OcmqorsPv3.o: in function `mem_fence()':
/tmp/test.cpp:7: undefined reference to `__builtin_is_device_code'
pgacclnk: child process exit status 1: /usr/bin/ld

The issue seems to be the empty if-target branch for host. Putting some code in there seems to resolve the issue, while having either branch empty triggers the error.
It also does not seem to be sufficient to simply put an empty statement like ; inside the empty branches as a workaround - it seems to require actual code to work.

Of course, empty branches don’t seem to be particular useful, but they may appear without being explicitly put in by the application developer, e.g. when the branches contain macros which may expand to nothing depending on some build configuration. As such, I believe there is value in supporting this use case - on top of this just being a surprising and hard to debug error for users in some larger code bases :-)

1 Like

Hi illuhad,

This is a known issue (TPR #31242) that we found internally. It seems to only occur when there’s an empty “is_host” branch or when calling “__builtin_is_device_code” directly from host code. The issue has been fixed internally so I would expect the fix to be available in a future release.

-Mat

Hi Mat,

It seems like this is no longer a problem since 22.9, could you please confirm that is indeed the case?

Cheers,
-Nuno

Yes, TPR #31242 was fixed in 22.9.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.