diff options
| author | Andrew M. B. Boktor <[email protected]> | 2012-08-17 14:45:03 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:48:54 -0700 |
| commit | 9b49af32a493752503cd414e5a15063ac0bc98a1 (patch) | |
| tree | 366f3f8d300711222f39e84b659100052411ace7 /libcuda/cuobjdump.y | |
| parent | 7757c7e26172c5d6452ba2b1b051df3fd28505d3 (diff) | |
On demand loading of fatbins
Experimental library support (diff abstract_hardware_model.cc) (currently broken because of undocumented cudaGetExportTable function in the cuda rt api)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 13793]
Diffstat (limited to 'libcuda/cuobjdump.y')
| -rw-r--r-- | libcuda/cuobjdump.y | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libcuda/cuobjdump.y b/libcuda/cuobjdump.y index b8e9c11..ec97283 100644 --- a/libcuda/cuobjdump.y +++ b/libcuda/cuobjdump.y @@ -61,7 +61,8 @@ char filename [1024]; %% -program : emptylines section +program : {printf("######### cuobjdump parser ########\n");} + emptylines section | program section; emptylines : emptylines NEWLINE @@ -103,7 +104,7 @@ ptxcode : ptxcode PTXLINE {fprintf(ptxfile, "%s", $2);} elfcode : elfcode ELFLINE {fprintf(elffile, "%s", $2);} | ; -sasscode : sasscode SASSLINE {fprintf(sassfile, "%s", $2)} +sasscode : sasscode SASSLINE {fprintf(sassfile, "%s", $2);} | ; |
