diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-10-09 10:37:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 10:37:46 -0600 |
commit | 55ed4981998ce78496e30752192a9732c3570888 (patch) | |
tree | 5189cc8a11595fee4e8e472e58b442aa2555a225 /numpy/distutils/fcompiler | |
parent | f691175d8fd836d1f65f95db4774370cc1ec3a88 (diff) | |
download | numpy-55ed4981998ce78496e30752192a9732c3570888.tar.gz |
BUG: Fix indentation.
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/nv.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/distutils/fcompiler/nv.py b/numpy/distutils/fcompiler/nv.py index c5f203ee8..8e9f16835 100644 --- a/numpy/distutils/fcompiler/nv.py +++ b/numpy/distutils/fcompiler/nv.py @@ -5,14 +5,14 @@ from numpy.distutils.fcompiler import FCompiler compilers = ['NVHPCFCompiler'] class NVHPCFCompiler(FCompiler): - """ NVIDIA High Performance Computing (HPC) SDK Fortran Compiler + """ NVIDIA High Performance Computing (HPC) SDK Fortran Compiler - https://developer.nvidia.com/hpc-sdk + 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`. - """ + 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' |