candle icon indicating copy to clipboard operation
candle copied to clipboard

Error: DriverError(CUDA_ERROR_NOT_FOUND, "named symbol not found") when loading cast_f32_bf16

Open jefftantan opened this issue 1 year ago • 2 comments
trafficstars

Win11 Error: DriverError(CUDA_ERROR_NOT_FOUND, "named symbol not found") when loading cast_f32_bf16

jefftantan avatar Mar 22 '24 00:03 jefftantan

it's only available when __CUDA_ARCH__ >= 800 cast kernel

yinqiwen avatar Mar 22 '24 07:03 yinqiwen

@yinqiwen Yep , correct. @jefftantan was probably using 2000 series nvidia chips or older (like i was when i got the same error on my rtx 2070 😞 )

The 16-bit __nv_bfloat16 floating-point version of atomicAdd() is only supported by devices of compute capability 8.x and higher.

You can also find more details in the related issue above.

Hope it helps :)

dommyrock avatar Apr 11 '24 20:04 dommyrock