Compiling error

Hello,
Trying compiling for the following example test2.f90 file,
program managedCUF
use cudafor
implicit none
integer, parameter :: nx=1024, ny=512
integer :: a(nx,ny)
!@cuf attributes(managed):: a
integer :: b, i ,j

a = 1
b = 3
!@cuf kernel do (2) <<< * , * >>>
do j=1,ny
do i=1,nx
a(i,j)=a(i,j)+b
end do
end do
!@cuf i=cudaDeviceSynchronize()

!@cuf print , “Running CUDA version …”
if(any(a /= 4)) then
print , "
** Program Failed ****"
else
print *, “Program Passed”
end if
end program managedCUF

with the errors,
nvfortran -mp=gpu -gpu=cuda25.3 -c -O2 -o build/Release/NVIDIA-Linux/test2.o test2.f90
nvfortran-Error-A CUDA toolkit matching the current driver version (0) or a supported older version (25.3) was not installed with this HPC SDK.
gmake: *** [nbproject/Makefile-Release.mk:67: build/Release/NVIDIA-Linux/test2.o] Error 1

What’s wrong?

Solved issue by deleting -gpu=cuda25.3 option.