diff options
author | Rafael Cardoso Fernandes Sousa <rafaelcfsousa@ibm.com> | 2022-01-14 06:05:34 -0600 |
---|---|---|
committer | Rafael Cardoso Fernandes Sousa <rafaelcfsousa@ibm.com> | 2022-01-14 06:05:34 -0600 |
commit | 78c6713b4ee06bec1fa579f94b466cbe5fe4e8f3 (patch) | |
tree | cec550b8d0aea7cabc6f76bdb65a2270dc066330 | |
parent | d88104fd0e2f85ac4eb667fcd7161aaa1d41e11a (diff) | |
download | numpy-78c6713b4ee06bec1fa579f94b466cbe5fe4e8f3.tar.gz |
STY: Fix linter issue
-rw-r--r-- | numpy/distutils/ccompiler_opt.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/ccompiler_opt.py b/numpy/distutils/ccompiler_opt.py index 794d88433..854584998 100644 --- a/numpy/distutils/ccompiler_opt.py +++ b/numpy/distutils/ccompiler_opt.py @@ -295,7 +295,8 @@ class _Config: ## Power9/ISA 3.00 VSX3 = dict(interest=3, implies="VSX2", implies_detect=False), ## Power10/ISA 3.1 - VSX4 = dict(interest=4, implies="VSX3", extra_checks="VSX4_MMA", implies_detect=False), + VSX4 = dict(interest=4, implies="VSX3", implies_detect=False, + extra_checks="VSX4_MMA"), # IBM/Z ## VX(z13) support VX = dict(interest=1, headers="vecintrin.h"), |