Re: Boost in CUDA C++
John Maddock via Boost-users <[email protected]> Mon, 12 Aug 2024 09:20:02 +0100
| Newsgroups | gmane.comp.lib.boost.user |
|---|---|
| Message-ID | <[email protected]> |
On 11/08/2024 09:15, wickedPlatypus via Boost-users wrote: > Hi everyone: > I have been using Boost for a couple of months in Ubuntu but I have > moved into Windows 11 where I am using Microsoft VIsual Studio > Community. I have been trying to run a simple code using the CUDA nvcc > compiler but I am getting the next errors: I fear you are probably out of luck, nothing can be used in a CUDA kernel unless it is specially marked up for the purpose: that includes standard library code. John.