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
Im trying to run SoftDTW between two tensors with the following dimensions:
bs x num_points x data_dimensionality
relevant_centerlines = 1024 x 30 x 2
predictions = 1024 x 30 x 2
As following:
error = sdtw(relevant_centerlines, predictions)
However, Im getting the following error. What can I do?
[INFO: 246]: init
[ERROR: 385]: Call to cuPointerGetAttribute results in CUDA_ERROR_INVALID_VALUE
*** numba.cuda.cudadrv.driver.CudaAPIError: [1] Call to cuPointerGetAttribute results in CUDA_ERROR_INVALID_VALUE
The text was updated successfully, but these errors were encountered:
Yes, I was @yhchen1123. The solutions are the versions. You must have a compatible CUDA version (in my case 11.6) and the associated dependencies. I am developing this based on this Docker image:
Hi guys,
Im trying to run SoftDTW between two tensors with the following dimensions:
bs x num_points x data_dimensionality
relevant_centerlines = 1024 x 30 x 2
predictions = 1024 x 30 x 2
As following:
error = sdtw(relevant_centerlines, predictions)
However, Im getting the following error. What can I do?
The text was updated successfully, but these errors were encountered: