CUDA 2.3リリース

http://forums.nvidia.com/index.php?showtopic=102548

CUDA 2.3がリリースされたのでとりあえずtoolkitだけインストールしてみました。

まずは自分の環境に合わせてhttp://developer.download.nvidia.com/compute/cuda/2_3/toolkit/cudatoolkit_2.3_linux_64_ubuntu9.04.runをダウンロードします。
次に、それを実行しインストールを始めます。

$ sudo bash cudatoolkit_2.3_linux_64_ubuntu9.04.run

インストール先ディレクトリを聞かれますが、defaultのままで良いので、enterキーを押します。

Enter install path (default /usr/local/cuda, '/cuda' will be appended): 

既に2.2をインストールしているためアンインストールするかどうか聞かれますので、yesを入力してアンインストールします。

A previous version of CUDA was found in /usr/local/cuda/bin
Would you like to uninstall? (yes/no/abort): yes

一応確認のためバージョンを確認します。

$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2009 NVIDIA Corporation
Built on Mon_Jul_13_12:35:34_PDT_2009
Cuda compilation tools, release 2.3, V0.2.1221

特に問題なくインストール出来ました。