summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2011-06-30 08:25:47 -0800
committerTor Aamodt <[email protected]>2011-06-30 08:25:47 -0800
commit2c7786737f1b3137ff199df51c4813826e5f8381 (patch)
tree540bc6b845e91c777f1a550b9c1aa19db02f9c1d
parenta9b5e6a7cc958b20f52db79627fa2b2d7b7be9a7 (diff)
version info
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 9691]
-rw-r--r--README18
-rw-r--r--src/cuda-sim/cuda-sim.cc2
2 files changed, 6 insertions, 14 deletions
diff --git a/README b/README
index a915d90..62bbc8a 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-GPGPU-Sim Simulator version 2.1.1b (beta)
+GPGPU-Sim Simulator version 3.0.0b (beta)
See doc/GPGPU-Sim_Manual.html for more documentation.
@@ -71,18 +71,10 @@ CUDA toolkit (including the trailing "/cuda"). Then, change to the C/common
subdirectory of your CUDA SDK installation (or common subdirectory on older
CUDA SDK versions) and type "make".
-Step 4: Set environment variables (e.g., your .bashrc file if you use bash as
-your shell).
-
- (a) Set GPGPUSIM_ROOT to point to the directory containing this README file.
- (b) Set CUDAHOME to point to your CUDA installation directory
- (c) Set NVIDIA_CUDA_SDK_LOCATION to point to the location of the CUDA SDK
- (d) Add $CUDAHOME/bin and $GPGPUSIM_ROOT/bin to your PATH
- (e) Add $GPGPUSIM_ROOT/lib/ to your LD_LIBRARY_PATH and remove $CUDAHOME/lib
- or $CUDAHOME/lib64 from LD_LIBRARY_PATH
- (f) If using OpenCL, set NVOPENCL_LIBDIR to the installation directory of
- libOpenCL.so distributed with the NVIDIA OpenCL driver.
- On SuSe 11.1 64-bit NVIDIA's libOpenCL.so is installed in /usr/lib64/.
+Step 4: Set environment variables by sourcing the setup_environment script.
+From a bash shell, type the following in this directory:
+
+ . setup_environment
Step 5: Type "make" in this directory. This will build the simulator with
optimizations enabled so the simulator runs faster. If you want to run the
diff --git a/src/cuda-sim/cuda-sim.cc b/src/cuda-sim/cuda-sim.cc
index 4b17917..832d025 100644
--- a/src/cuda-sim/cuda-sim.cc
+++ b/src/cuda-sim/cuda-sim.cc
@@ -1182,7 +1182,7 @@ kernel_info_t *gpgpu_opencl_ptx_sim_init_grid(class function_info *entry,
return result;
}
-const char *g_gpgpusim_version_string = "2.1.1b (beta)";
+const char *g_gpgpusim_version_string = "3.0.0b (beta)";
void print_splash()
{