-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CuDNN error #3
Comments
Same error with a cleaned up backtrace:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dear developers,
I installed paleo on a machine that did not have cuDNN (since the install instructions say it is optional). Then I ran
#! /bin/sh
NET_FILE=nets/inception_v3.json
OUT_FILE=results/case_inception
PPP_COMP=0.62
PPP_COMM=0.72
./paleo.sh simulate $NET_FILE
--use_only_gemm
--batch_size=256
--network_name=ethernet
--device_name=K40
--num_workers=1,2,4,8,16,50,100
--ppp_comp=$PPP_COMP
--ppp_comm=$PPP_COMM
--scaling=weak >> $OUT_FILE
but I got the following error.
File "paleo/profiler.py", line 427, in <module> cli() File "/Users/pbalapra/anaconda2/envs/paleo/lib/python2.7/site-packages/click/core.py", line 722, in __call__ return self.main(*args, **kwargs) File "/Users/pbalapra/anaconda2/envs/paleo/lib/python2.7/site-packages/click/core.py", line 697, in main rv = self.invoke(ctx) File "/Users/pbalapra/anaconda2/envs/paleo/lib/python2.7/site-packages/click/core.py", line 1066, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/Users/pbalapra/anaconda2/envs/paleo/lib/python2.7/site-packages/click/core.py", line 895, in invoke return ctx.invoke(self.callback, **ctx.params) File "/Users/pbalapra/anaconda2/envs/paleo/lib/python2.7/site-packages/click/core.py", line 535, in invoke return callback(*args, **kwargs) File "paleo/profiler.py", line 297, in simulate ppp_comm, parallel, hybrid_workers) File "paleo/profiler.py", line 149, in simulate ppp_comm) File "/Users/pbalapra/Projects/repos/2018/paleo/paleo/simulation.py", line 250, in simulate_scaling device) File "/Users/pbalapra/Projects/repos/2018/paleo/paleo/simulation.py", line 59, in _profile_for_apply_updates device) File "/Users/pbalapra/Projects/repos/2018/paleo/paleo/profilers/flops_profiler.py", line 24, in __init__ from paleo.profilers import cudnn_profiler as cudnn File "/Users/pbalapra/Projects/repos/2018/paleo/paleo/profilers/cudnn_profiler.py", line 10, in <module> from paleo.third_party import libcudnn File "/Users/pbalapra/Projects/repos/2018/paleo/paleo/third_party/libcudnn.py", line 52, in <module> raise OSError('cuDNN library not found') OSError: cuDNN library not found
The text was updated successfully, but these errors were encountered: