CUDA drivers and CUDA SDK version

Hi,

I’m new with CUDA technology.
I’ve recently installed CUDA 3.0 on Linux OS machine.

Is there any command to know what CUDA driver and what CUDA SDK installed on my system?

I know the command “nvcc --version
the answer I get is:

nvcc: NVIDIA ® Cuda compiler driver
Copyright © 2005-2009 NVIDIA Corporation
Built on Mon_Oct_26_09:40:14_PDT_2009
Cuda compilation tools, release 3.0, V0.2.1221

What can I learn from that answer? Is it SDK’s version or driver?

also I run “devicequery
And i get all my GPU’s details, here’s one paragraph of what I get:

Device 7: “Tesla T10 Processor”
CUDA Driver Version: 3.0
CUDA Runtime Version: 2.30
CUDA Capability Major revision number: 1
CUDA Capability Minor revision number: 3
Total amount of global memory: 4294770688 bytes
Number of multiprocessors: 30
Number of cores: 240
Total amount of constant memory: 65536 bytes
Total amount of shared memory per block: 16384 bytes
Total number of registers available per block: 16384
Warp size: 32
Maximum number of threads per block: 512
Maximum sizes of each dimension of a block: 512 x 512 x 64
Maximum sizes of each dimension of a grid: 65535 x 65535 x 1
Maximum memory pitch: 262144 bytes
Texture alignment: 256 bytes
Clock rate: 1.30 GHz
Concurrent copy and execution: Yes
Run time limit on kernels: No
Integrated: No
Support host page-locked memory mapping: Yes
Compute mode: Default (multiple host threads can use this device simultaneously)

Thanks.

CUDA Driver Version: 3.0

CUDA Runtime Version: 2.30

That tells you have a 3.0 CUDA driver (so 195/196 series driver) and the executable was run or linked with the CUDA 2.3 toolkit. The SDK doesn’t have any version identification.

Thanks