diff options
author | Daniel Vanzo <daniel.vanzo@external.total.com> | 2020-09-22 15:08:21 +0200 |
---|---|---|
committer | Daniel Vanzo <daniel.vanzo@external.total.com> | 2020-09-22 15:08:21 +0200 |
commit | 155248f763db534abde85ce382716cf0ab3347b9 (patch) | |
tree | 71ce825cc644d696597c01088fabbdacac409c89 /numpy/distutils/fcompiler | |
parent | e1c109910e6f78fce17099c5cbdebd08867b1d8b (diff) | |
download | numpy-155248f763db534abde85ce382716cf0ab3347b9.tar.gz |
ENH: Add comments about Nvidia HPC SDK and PGI
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/nv.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/distutils/fcompiler/nv.py b/numpy/distutils/fcompiler/nv.py index 60d117c80..4cf30f5ef 100644 --- a/numpy/distutils/fcompiler/nv.py +++ b/numpy/distutils/fcompiler/nv.py @@ -5,6 +5,10 @@ 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): compiler_type = 'nv' |