diff options
| author | Tor Aamodt <[email protected]> | 2010-10-03 18:12:23 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-10-03 18:12:23 -0800 |
| commit | dda377ce2854d0e65f7f6531f6eb6b398bbbf888 (patch) | |
| tree | d379a0fbfa66f71ec2e9ea63fc6c1dfe21bb271b /src/cuda-sim/ptx_ir.cc | |
| parent | f97c52bbaed425f5ada9758c248c9a2c2b9853dd (diff) | |
1. integrating Inder's changes
2. edit to 3dfd to enable execution on Quadro
3. update script to not pass device directly to 3dfd on command line (which it does not support)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7810]
Diffstat (limited to 'src/cuda-sim/ptx_ir.cc')
| -rw-r--r-- | src/cuda-sim/ptx_ir.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuda-sim/ptx_ir.cc b/src/cuda-sim/ptx_ir.cc index db915fe..fd51de5 100644 --- a/src/cuda-sim/ptx_ir.cc +++ b/src/cuda-sim/ptx_ir.cc @@ -1219,8 +1219,8 @@ void gpgpu_ptx_assemble( std::string kname, void *kinfo ) { function_info *func_info = (function_info *)kinfo; if((function_info *)kinfo == NULL) { - printf("GPGPU-Sim PTX: Error - missing function definition \'%s\'\n", kname.c_str()); - abort(); + printf("GPGPU-Sim PTX: Warning - missing function definition \'%s\'\n", kname.c_str()); + return; } if( func_info->is_extern() ) { printf("GPGPU-Sim PTX: skipping assembly for extern declared function \'%s\'\n", func_info->get_name().c_str() ); |
