You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And I can successfully run 'rnn_bench', 'nccl_single_all_reduce',
But when I run 'gemm_bench' it give me the error of "terminate called after throwing an instance of 'std::runtime_error'";
run 'conv_bench' it will be stop when procedure doing the 11th test,and the error is " terminate called after throwing an instance of 'std::runtime_error' what(): Illegal algorithm passed to get_fwd_algo_string. Algo: 7"
run 'nccl_mpi_all_reduce' the error is "terminate called after throwing an instance of 'std::runtime_error'what(): NCCL failure: invalid device pointer in nccl_mpi_all_reduce.cu at line: 86 rank: 0"
How can I fix it?
The text was updated successfully, but these errors were encountered:
I haven't really tested DeepBench kernels for K80. Are you sure you compiled with the correct SM version? Are the drivers updated to run with CUDA 8.0?
Algo 7 is CUDNN_CONVOLUTION_FWD_ALGO_WINOGRAD_NONFUSED, and DeepBench has a case statement for that in get_fwd_algo_string() when CUDNN_MAJOR >= 6. Maybe a pre-cuDNNv6 header file was in your include path?
Environment:
Problems:
After make there are five files in .../nvidia/bin , they are:
conv_bench gemm_bench nccl_mpi_all_reduce nccl_single_all_reduce rnn_bench
And I can successfully run 'rnn_bench', 'nccl_single_all_reduce',
How can I fix it?
The text was updated successfully, but these errors were encountered: