polish error message

This commit is contained in:
Dun Liang 2021-10-09 16:46:53 +08:00
parent 2951214deb
commit aba912eb22
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
# file 'LICENSE.txt', which is part of this source code package.
# ***************************************************************
__version__ = '1.3.0.9'
__version__ = '1.3.0.10'
from jittor_utils import lock
with lock.lock_scope():
ori_int = int

View File

@ -219,8 +219,8 @@ def setup_cuda_extern():
msg += """Develop version of CUDNN not found,
please refer to CUDA offical tar file installation:
https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html#installlinux-tar"""
if platform.machine() in ["x86_64", "AMD64"]:
msg += f"""
if platform.machine() in ["x86_64", "AMD64"]:
msg += f"""
or you can let jittor install cuda and cudnn for you:
>>> python3.{sys.version_info.minor} -m jittor_utils.install_cuda
"""