diff options
author | danbeibei <57632244+danbeibei@users.noreply.github.com> | 2020-10-02 15:57:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 15:57:18 +0200 |
commit | f691175d8fd836d1f65f95db4774370cc1ec3a88 (patch) | |
tree | 3bb41fa4936a8e2931e3776b2c2b2116c3942b18 /numpy/distutils/fcompiler | |
parent | 155248f763db534abde85ce382716cf0ab3347b9 (diff) | |
download | numpy-f691175d8fd836d1f65f95db4774370cc1ec3a88.tar.gz |
Update numpy/distutils/fcompiler/nv.py
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/nv.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/numpy/distutils/fcompiler/nv.py b/numpy/distutils/fcompiler/nv.py index 4cf30f5ef..c5f203ee8 100644 --- a/numpy/distutils/fcompiler/nv.py +++ b/numpy/distutils/fcompiler/nv.py @@ -1,15 +1,18 @@ -# https://developer.nvidia.com/hpc-sdk import sys from numpy.distutils.fcompiler import FCompiler compilers = ['NVHPCFCompiler'] -""" -Since august 2020 the NVIDIA HPC SDK includes the compilers formely known as The Portland Group compilers. -https://www.pgroup.com/index.htm -""" class NVHPCFCompiler(FCompiler): + """ NVIDIA High Performance Computing (HPC) SDK Fortran Compiler + + https://developer.nvidia.com/hpc-sdk + + Since august 2020 the NVIDIA HPC SDK includes the compilers formerly known as The Portland Group compilers, + https://www.pgroup.com/index.htm. + See also `numpy.distutils.fcompiler.pg`. + """ compiler_type = 'nv' description = 'NVIDIA HPC SDK' |