summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2020-08-07 19:39:55 -0700
committerGitHub <[email protected]>2020-08-07 19:39:55 -0700
commit7c19bb91f69fc467a7005608f8090cc3c66dd0a7 (patch)
tree5e0aef95c163bced961903e32647e7259d13c0bf /README.md
parent9c51f93ff8808f0fe1b01b3f647fe0bb8f9a7e6a (diff)
parentf415aeeb3417566b891e9f6efc6701f9c285cc2b (diff)
Merge pull request #198 from cng123/dev
updated readme with pointer to pytorch repo
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index b56d5eb..96c1d15 100644
--- a/README.md
+++ b/README.md
@@ -257,15 +257,16 @@ To clean the docs run
The documentation resides at doc/doxygen/html.
+To run Pytorch applications with the simulator, install the modified Pytorch library as well by following instructions [here](https://github.com/gpgpu-sim/pytorch-gpgpu-sim).
## Step 3: Run
Before we run, we need to make sure the application's executable file is dynamically linked to CUDA runtime library. This can be done during compilation of your program by introducing the nvcc flag "--cudart shared" in makefile (quotes should be excluded).
To confirm the same, type the follwoing command:
-ldd <your_application_name>
+`ldd <your_application_name>`
-You should see that your application is using libcudart.so file in GPGPUSim directory.
+You should see that your application is using libcudart.so file in GPGPUSim directory. If the application is a Pytorch application, `<your_application_name>` should be `$PYTORCH_BIN`, which should be set during the Pytorch installation.
If running applications which use cuDNN or cuBLAS: