Error when using NUMBA CUDA

I am going through the Mean Shift Clustering lecture of Part 2 of the course.
I was implementing the cuda.jit part of the code. On a Kaggle notebook with GPU P100.

matmul[blockspergrid, (TPB,TPB)](m1g,m2g,rg)
r = rg.copy_to_host()

And it is giving me this error.

Call to cuLinkAddData results in UNKNOWN_CUDA_ERROR
ptxas application ptx input, line 9; fatal : Unsupported .version 7.7; current version is ‘7.4’

How should I go about fixing this issue?

Sorry, I don’t know the answer, but I notice you don’t mention any of the research you already did as described in Before You Ask. So to start you off while waiting for a more knowledgable answer, you might summarise what you learn from this search

I tried searching for a solution, but I don’t know of any way to change or update the version of CUDA on Kaggle.
That is something I want to try but online I didn’t find any solution.

So then you would need to change the Numba version to be compatible with the CUDA version you have.