Should I worry about this warning while training a TensorFlow Lite object detection model ? Will it affect my training?

I am training a training a TensorFlow Lite object detection model using google collab and I came across this warning.
" *** WARNING *** You are using ptxas 11.0.194, which is older than 11.1. ptxas before 11.1 is known to miscompile XLA code, leading to incorrect results or invalid-address errors.

You may not need to update to CUDA 11.1; cherry-picking the ptxas binary is often sufficient."

Hi @karim_merchaoui, As mentioned in this github issue the version of CUDA in your PATH is too old. Try running which ptxas to determine which copy of CUDA is being used. Thank You.