summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2012-05-29 16:17:37 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:47:32 -0700
commitf7c1841ca524450ebf471f9708377037028455b3 (patch)
treed71dd82ff6297f03f4a0bb6a065664b355eac447 /src
parent7d029b6129048cddbb0895565befcc452ef0aa5b (diff)
updating version number string to 3.1.0+edits to indicate further edits past last stable release (i.e., this is a "development" branch)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12830]
Diffstat (limited to 'src')
-rw-r--r--src/cuda-sim/cuda-sim.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuda-sim/cuda-sim.cc b/src/cuda-sim/cuda-sim.cc
index 7fdd64b..81f255e 100644
--- a/src/cuda-sim/cuda-sim.cc
+++ b/src/cuda-sim/cuda-sim.cc
@@ -1372,7 +1372,7 @@ kernel_info_t *gpgpu_opencl_ptx_sim_init_grid(class function_info *entry,
}
const char *g_gpgpusim_build_string = "$Change$";
-const char *g_gpgpusim_version_string = "3.1.0";
+const char *g_gpgpusim_version_string = "3.1.0+edits (development branch)";
void print_splash()
{
@@ -1380,7 +1380,7 @@ void print_splash()
if ( !splash_printed ) {
unsigned build=0;
sscanf(g_gpgpusim_build_string, "$Change"": %u $", &build);
- fprintf(stdout, "\n\n *** GPGPU-Sim version %s (build %u) ***\n\n\n", g_gpgpusim_version_string, build );
+ fprintf(stdout, "\n\n *** GPGPU-Sim Simulator Version %s (build %u) ***\n\n\n", g_gpgpusim_version_string, build );
splash_printed=1;
}
}