CUDA_ERROR_ILLEGAL_ADDRESS when running p19 solution of mojo-gpu-puzzles

cd solutions/p19
pixi run python p19.py

then:

Puzzle 19: Mojo Embedding Kernel Comparison
======================================================================

Configuration: B=8, L=512, V=10000, E=512
------------------------------------------------------------
Testing Correctness...
   ❌ Implementation failed: At open-source/max/mojo/stdlib/stdlib/gpu/host/device_context.mojo:1629:17: CUDA call failed: CUDA_ERROR_ILLEGAL_ADDRESS (an illegal memory access was encountered)

anyone had the same error please?

That error means that you likely walked off the end of an array or did some pointer math wrong. It’s the GPU version of a segfault.