-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensured compatibility with NumPy 2.0(.0)
- Loading branch information
Showing
150 changed files
with
87 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (c) 2024 Villu Ruusmann | ||
* | ||
* This file is part of JPMML-Python | ||
* | ||
* JPMML-Python is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* JPMML-Python is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with JPMML-Python. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package numpy.random; | ||
|
||
import org.jpmml.python.CythonObject; | ||
|
||
public class SeedSequence extends CythonObject { | ||
|
||
public SeedSequence(String module, String name){ | ||
super(module, name); | ||
} | ||
|
||
@Override | ||
public void __init__(Object[] args){ | ||
// Ignored | ||
} | ||
|
||
@Override | ||
public void __setstate__(Object[] args){ | ||
// Ignored | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+129 Bytes
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_bool.pkl
Binary file not shown.
Binary file added
BIN
+352 Bytes
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_datetime_dtypes.pkl
Binary file not shown.
Binary file added
BIN
+159 Bytes
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_dtypes.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_float32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_float64.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.13 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_int16.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_int32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_int64.pkl
Binary file not shown.
Binary file added
BIN
+382 Bytes
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_int8.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.13 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_uint16.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_uint32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_uint64.pkl
Binary file not shown.
Binary file added
BIN
+382 Bytes
pmml-python/src/test/resources/dump/python-3.11_numpy-2.0.0_uint8.pkl
Binary file not shown.
Binary file added
BIN
+129 Bytes
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_bool.pkl
Binary file not shown.
Binary file added
BIN
+352 Bytes
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_datetime_dtypes.pkl
Binary file not shown.
Binary file added
BIN
+159 Bytes
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_dtypes.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_float32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_float64.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.13 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_int16.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_int32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_int64.pkl
Binary file not shown.
Binary file added
BIN
+382 Bytes
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_int8.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.13 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_uint16.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_uint32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_uint64.pkl
Binary file not shown.
Binary file added
BIN
+382 Bytes
pmml-python/src/test/resources/dump/python-3.12_numpy-2.0.0_uint8.pkl
Binary file not shown.
Binary file added
BIN
+129 Bytes
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_bool.pkl
Binary file not shown.
Binary file added
BIN
+352 Bytes
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_datetime_dtypes.pkl
Binary file not shown.
Binary file added
BIN
+159 Bytes
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_dtypes.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_float32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_float64.pkl
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+382 Bytes
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_int8.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.13 KB
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_uint16.pkl
Binary file not shown.
Binary file added
BIN
+8.13 KB
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_uint32.pkl
Binary file not shown.
Binary file added
BIN
+16.1 KB
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_uint64.pkl
Binary file not shown.
Binary file added
BIN
+382 Bytes
pmml-python/src/test/resources/dump/python-3.9_numpy-2.0.0_uint8.pkl
Binary file not shown.
Binary file added
BIN
+57 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_absolute.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_arccos.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_arcsin.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_arctan.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_arctan2.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_ceil.pkl
Binary file not shown.
Binary file added
BIN
+29 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_clip.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_cos.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_cosh.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_deg2rad.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_degrees.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_exp.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_expm1.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_floor.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_fmax.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_fmin.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_hypot.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_log.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_log10.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_log1p.pkl
Binary file not shown.
Binary file added
BIN
+57 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_negative.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_power.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_rad2deg.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_radians.pkl
Binary file not shown.
Binary file added
BIN
+59 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_reciprocal.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_rint.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_sign.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_sin.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_sinh.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_sqrt.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_square.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_tan.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.11_numpy-2.0.0_tanh.pkl
Binary file not shown.
Binary file added
BIN
+57 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_absolute.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_arccos.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_arcsin.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_arctan.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_arctan2.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_ceil.pkl
Binary file not shown.
Binary file added
BIN
+29 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_clip.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_cos.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_cosh.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_deg2rad.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_degrees.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_exp.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_expm1.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_floor.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_fmax.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_fmin.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_hypot.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_log.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_log10.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_log1p.pkl
Binary file not shown.
Binary file added
BIN
+57 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_negative.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_power.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_rad2deg.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_radians.pkl
Binary file not shown.
Binary file added
BIN
+59 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_reciprocal.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_rint.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_sign.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_sin.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_sinh.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_sqrt.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_square.pkl
Binary file not shown.
Binary file added
BIN
+52 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_tan.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.12_numpy-2.0.0_tanh.pkl
Binary file not shown.
Binary file added
BIN
+57 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_absolute.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_arccos.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_arcsin.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_arctan.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_arctan2.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_ceil.pkl
Binary file not shown.
Binary file added
BIN
+29 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_clip.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_cosh.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_deg2rad.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_degrees.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_expm1.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_floor.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_fmax.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_fmin.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_hypot.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_log10.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_log1p.pkl
Binary file not shown.
Binary file added
BIN
+57 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_negative.pkl
Binary file not shown.
Binary file added
BIN
+54 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_power.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_rad2deg.pkl
Binary file not shown.
Binary file added
BIN
+56 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_radians.pkl
Binary file not shown.
Binary file added
BIN
+59 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_reciprocal.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_rint.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_sign.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_sinh.pkl
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_sqrt.pkl
Binary file not shown.
Binary file added
BIN
+55 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_square.pkl
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+53 Bytes
pmml-python/src/test/resources/ufunc/python-3.9_numpy-2.0.0_tanh.pkl
Binary file not shown.