]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
plot_strings.py: Replace np.complex with complex
authorH.J. Lu <hjl.tools@gmail.com>
Tue, 21 Oct 2025 23:29:03 +0000 (07:29 +0800)
committerH.J. Lu <hjl.tools@gmail.com>
Tue, 21 Oct 2025 23:52:54 +0000 (07:52 +0800)
Replace np.complex with complex to fix numpy error:

AttributeError: module 'numpy' has no attribute 'complex'.
`np.complex` was a deprecated alias for the builtin `complex`. To avoid this error in existing code, use `complex` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.complex128` here.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
    https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
benchtests/scripts/plot_strings.py

index 3d0c2c5343c26017ff0f8fab13f7e420d966ae4c..67228048b5c8ffd5af5abde1620f5dd4b054a169 100755 (executable)
@@ -54,7 +54,7 @@ def gmean(numbers):
     Return:
         numpy array with geometric means of numbers along each column
     """
-    a = np.array(numbers, dtype=np.complex)
+    a = np.array(numbers, dtype=complex)
     means = a.prod(0) ** (1.0 / len(a))
     return np.real(means)