You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've just tried to use Imath as a vector library for CUDA. I'm not sure if it's supposed to work like this, but I saw some promising comments in the source, so I've tried.
All hsv2rgb() in ImathColorAlgo.h are marked as IMATH_HOSTDEVICE but rely on hsv2rgb_d() which is a host-only function.
Please correct me if I'm wrong.
If it's some porting is currently ongoing, it would be very helpful to see which parts of the library are already supported by CUDA.
Thank you,
Alexey
The text was updated successfully, but these errors were encountered:
That would be an oversight on my part. Right now I am determining why hsv2rgb_d() was not marked IMATH_HOSTDEVICE in the first place. Depending on what reason I discover I can either implement an alternative that can support CUDA or make sure hsv2rgb() is not marked IMATH_HOSTDEVICE.
) defined in it; it could be moved to a header which might resolve the header only goal. I think it's in fact the case that we don't need the instantiations any more, either. They were originally implemented like that to solve for limitations of VS2005, which have long since been resolved, to my knowledge.
It would be harmless to move ColorAlgo to a header at this point as well.
#13's outcome was in fact that the majority of Imath did become header only; there's just a few outliers left to tackle.
I've just tried to use Imath as a vector library for CUDA. I'm not sure if it's supposed to work like this, but I saw some promising comments in the source, so I've tried.
All hsv2rgb() in ImathColorAlgo.h are marked as IMATH_HOSTDEVICE but rely on hsv2rgb_d() which is a host-only function.
Please correct me if I'm wrong.
If it's some porting is currently ongoing, it would be very helpful to see which parts of the library are already supported by CUDA.
Thank you,
Alexey
The text was updated successfully, but these errors were encountered: