3031b5febcAccepting request 1216757 from devel:languages:python:numeric
Ana Guerrero
2024-10-22 12:51:59 +0000
a06c42d6da- Add upstream patch numpy21.patch to enable support for NumPy 2.1Benjamin Greiner2024-10-21 14:36:37 +0000
d11b2a4851osc copypac from project:openSUSE:Factory package:python-numba revision:48, using keep-link, using expandDirk Mueller2024-09-24 20:00:55 +0000
9218c9dbd3- add allow-numpy21.patch to allow numpy 2.1Dirk Mueller2024-09-23 11:26:56 +0000
b612f36ebcAccepting request 1186082 from devel:languages:python:numeric
Ana Guerrero
2024-07-08 17:08:41 +0000
a9753963f9- Update to 0.60.0: * NumPy 2.0 Binary Support * New Features + IEnhance guvectorize support in JIT code + IAdd experimental support for ufunc.at + IAdd float(<string literal>) ctor + IAdd support for math.log2. + IAdd math.nextafter support for nopython mode. + IAdd support for parfor binop reductions. * Improvements + Expand isinstance() support for NumPy datetime types + Python 3.12 sys.monitoring support is added to Numba's dispatcher. * NumPy Support + Added support for np.size() * CUDA API Changes + Support for compilation to LTO-IR + Support math.log, math.log2 and math.log10 in CUDA * Bug Fixes + Fix parfor variable hoisting analysis.
Steve Kowalik
2024-07-01 05:12:02 +0000
3e10826f6fAccepting request 1177314 from devel:languages:python:numeric
Ana Guerrero
2024-05-28 15:30:21 +0000
61d9dafcd4Accepting request 1177313 from home:dgarcia:branches:devel:languages:python:numericDaniel Garcia2024-05-28 10:18:24 +0000
136ba159e1Accepting request 1160819 from devel:languages:python:numeric
Ana Guerrero
2024-03-25 20:07:59 +0000
7de0d7fba4- update to 0.59.1: * Fixed caching of kernels that use target-specific overloads * Fixed a performance regression introduced in Numba 0.59 which made `np.searchsorted considerably slower. * This patch fixes two issues with np.searchsorted. First, a regression is fixed in the support of np.datetime64. Second, adopt NAT-aware comparisons to fix mishandling of NAT` value. * Allow use of Python 3.12 PEP-695 type parameter syntaxDirk Mueller2024-03-22 20:06:52 +0000
3528e34331Accepting request 1156604 from devel:languages:python:numeric
Dominique Leuenberger
2024-03-09 19:55:47 +0000
882453f5e6Accepting request 1156402 from home:bnavigator:branches:devel:languages:python:numericMatej Cepl2024-03-09 10:05:32 +0000
3988639ecfAccepting request 1149089 from devel:languages:python:numeric
Ana Guerrero
2024-02-22 19:59:24 +0000
a4f04123a2Accepting request 1148783 from home:bnavigator:branches:devel:languages:python:numericMarkéta Machová2024-02-22 08:26:40 +0000
c7f8e6c17fAccepting request 1143960 from devel:languages:python:numeric
Ana Guerrero
2024-02-04 18:07:59 +0000
0d9dfc143d- update to 0.59.0 * Python 3.12 support * minimum supported version to 3.9 * Add support for ufunc attributes and reduce * Add a config variable to enable / disable the llvmlite memory manager * see https://numba.readthedocs.io/en/stable/release/0.59.0-notes.html#highlights * fix regressions with 0.57.0 + Support is added for the dict(iterable) constructor. - Clean up leftover Python 3.8 gubbins, look forward to Python 3.11 support. This release focuses on performance improvements, but also adds some new features and contains numerous bug fixes and stability * Intel kindly sponsored research and development into producing a new reference count pruning pass. This pass operates at the LLVM level and can prune a number of common reference counting patterns. This will improve performance for two primary - There will be less pressure on the atomic locks used to do - Removal of reference counting operations permits more inlining and the optimisation passes can in general do more * Intel also sponsored work to improve the performance of the numba.typed.List container, particularly in the case of * Superword-level parallelism vectorization is now switched on and the optimisation pipeline has been lightly analysed and tuned so as to be able to vectorize more and more often * The inspect_cfg method on the JIT dispatcher object has been significantly enhanced and now includes highlighted output and * The BSD operating system is now unofficially supported (Stuart * Numerous features/functionality improvements to NumPy support, - the ndarray allocators, empty, ones and zeros, accepting a * Cudasim support for mapped array, memcopies and memset hasDirk Mueller2024-02-03 07:06:15 +0000
ddd2b5c5f9Accepting request 1127835 from devel:languages:python:numeric
Ana Guerrero
2023-11-21 20:32:16 +0000
76fe35019eAccepting request 1127715 from home:mcalabkova:branches:devel:languages:python:numeric
Steve Kowalik
2023-11-21 06:59:22 +0000
765774aefdAccepting request 1112351 from devel:languages:python:numeric
Dominique Leuenberger
2023-09-20 11:30:32 +0000
8de96c9b1fAccepting request 1112284 from home:mcalabkova:branches:devel:languages:python:numericDirk Mueller2023-09-19 16:56:18 +0000
ef6d00cfacAccepting request 1105200 from devel:languages:python:numeric
Ana Guerrero
2023-08-23 12:57:43 +0000
5a1d0e7d7bAccepting request 1105150 from home:bnavigator:branches:devel:languages:python:numericMarkéta Machová2023-08-22 08:11:15 +0000
158c0e36f7Accepting request 1103793 from devel:languages:python:numeric
Dominique Leuenberger
2023-08-14 20:35:49 +0000
d2a1dc7ee3- update to 0.57.1: * fix regressions with 0.57.0 - remove upper bound on numpy - upstream does not have it eitherDirk Mueller2023-08-14 06:52:43 +0000
30e8c05d0dAccepting request 1089198 from devel:languages:python:numeric
Dominique Leuenberger
2023-05-26 18:15:52 +0000
7dc6bd0e2e- Update to 0.57.0: * Support for Python 3.11 (minimum is moved to 3.8) * Support for NumPy 1.24 (minimum is moved to 1.21) * Python language support enhancements: + Exception classes now support arguments that are not compile time constant. + The built-in functions hasattr and getattr are supported for compile time constant attributes. + The built-in functions str and repr are now implemented similarly to their Python implementations. Custom __str__ and __repr__ functions can be associated with types and work as expected. + Numba’s unicode functionality in str.startswith now supports kwargs start and end. + min and max now support boolean types. + Support is added for the dict(iterable) constructor. - Dropped patches: * numba-pr8620-np1.24.patch * update-tbb-backend-calls-2021.6.patch - Rebased existing patch.
Steve Kowalik
2023-05-26 13:36:43 +0000
b233959520Accepting request 1078560 from devel:languages:python:numeric
Dominique Leuenberger
2023-04-12 10:52:16 +0000
fc396cbd22- Clean up leftover Python 3.8 gubbins, look forward to Python 3.11 support.
Steve Kowalik
2023-04-12 05:54:10 +0000
28ead19804Accepting request 1078373 from home:dimstar:Factory
Steve Kowalik
2023-04-12 05:52:24 +0000
d90b9e78ddAccepting request 1046630 from devel:languages:python:numeric
Dominique Leuenberger
2023-01-04 16:51:09 +0000
e18eb501abAccepting request 1046565 from home:bnavigator:branches:devel:languages:python:numericMatej Cepl2023-01-03 18:24:04 +0000
1f5d040253Accepting request 1046394 from home:bnavigator:branches:devel:languages:python:numericDirk Mueller2023-01-03 07:39:21 +0000
9ec1b08f3fAccepting request 1009378 from devel:languages:python:numeric
Richard Brown
2022-10-11 16:02:51 +0000
33fa80968eAccepting request 1009358 from home:jayvdb:branches:devel:languages:python:numericMarkéta Machová2022-10-10 12:53:04 +0000
828a5b6722Accepting request 1007810 from devel:languages:python:numeric
Richard Brown
2022-10-04 18:37:58 +0000
bf674995ad- Update to 0.56.2 This release continues to add new features, bug fixes and stability improvements to Numba. Please note that this will be the last release that has support for Python 3.7 as the next release series (Numba 0.57) will support Python 3.11! Also note that, this will be the last release to support linux-32 packages produced by the Numba team. - Remove fix-max-name-size.patch, it's included in the new version. - Add update-tbb-backend-calls-2021.6.patch to make it compatible with the latest tbb-devel version. - Add fix-cli-test.patch to disable one test that fails with OBS.Daniel Garcia2022-10-03 13:07:28 +0000
dd6f41057fAccepting request 988613 from devel:languages:python:numeric
Dominique Leuenberger
2022-07-13 11:45:09 +0000
624ca76ff3Accepting request 988564 from home:bnavigator:branches:devel:languages:python:numericMatej Cepl2022-07-12 11:50:45 +0000
596e418106Accepting request 950311 from devel:languages:python:numeric
Dominique Leuenberger
2022-02-02 21:40:07 +0000
40a793512aAccepting request 949971 from home:bnavigator:branches:devel:languages:python:numericMatej Cepl2022-01-31 20:44:49 +0000
e47af9260dAccepting request 946610 from devel:languages:python:numeric
Dominique Leuenberger
2022-01-15 19:05:10 +0000
705a372c7eAccepting request 946603 from home:bnavigator:branches:devel:languages:python:numericDirk Mueller2022-01-15 13:04:10 +0000
5c98d253faAccepting request 945418 from devel:languages:python:numeric
Dominique Leuenberger
2022-01-10 22:53:55 +0000
2704467ddfAccepting request 945125 from home:bnavigator:branches:devel:languages:python:numericMatej Cepl2022-01-10 17:36:04 +0000
0d6025847dAccepting request 932339 from devel:languages:python:numeric
Dominique Leuenberger
2021-11-20 08:37:53 +0000
2847e66244Accepting request 932318 from home:bnavigator:branches:devel:languages:python:numericMatej Cepl2021-11-18 20:40:38 +0000
0efce5cd2dAccepting request 880619 from devel:languages:python:numeric
Dominique Leuenberger
2021-03-24 15:13:57 +0000
ef1752b2cbAccepting request 880602 from home:bnavigator:branches:devel:languages:python:numericDirk Mueller2021-03-22 22:18:24 +0000
4651c700a3Accepting request 845716 from devel:languages:python:numeric
Dominique Leuenberger
2020-11-04 17:26:23 +0000
a0ae4b85f1Accepting request 845659 from home:mcalabkova:branches:devel:languages:python:numericMarkéta Machová2020-11-03 13:11:54 +0000
bea33efdb3Accepting request 809224 from devel:languages:python:numeric
Yuchen Lin
2020-05-28 07:15:33 +0000
90b2d8fdccAccepting request 809217 from home:pgajdos:python
Tomáš Chvátal
2020-05-27 09:27:13 +0000
fb17d00563Accepting request 798393 from devel:languages:python:numeric
Dominique Leuenberger
2020-04-28 20:30:33 +0000
b4daad252dAccepting request 798175 from home:mcalabkova:branches:devel:languages:python:numeric
Tomáš Chvátal
2020-04-27 19:40:16 +0000
494c7181c2Accepting request 791732 from devel:languages:python:numeric
Dominique Leuenberger
2020-04-07 08:30:34 +0000
ce750d2917- Switch to multibuilt as the tests take ages to build and we could speed things up in 2 loops
Tomáš Chvátal
2020-04-06 08:03:09 +0000
75d0436b87Accepting request 777950 from devel:languages:python:numeric
Dominique Leuenberger
2020-02-21 15:43:05 +0000
046fe794b5- Update to 0.48.0: * Many fixes for llvm/cuda updates; see CHANGE_LOG for details * Drop python2 support - Add one more failing test to skip: * skip-failing-tests.patch
Tomáš Chvátal
2020-02-21 12:35:24 +0000
f71e67905fAccepting request 757638 from devel:languages:python:numeric
Dominique Leuenberger
2019-12-18 13:45:15 +0000
c75550179dAccepting request 757636 from home:mcepl:branches:devel:languages:python:numericMatej Cepl2019-12-17 22:30:55 +0000
51355d5ce3Accepting request 742877 from devel:languages:python:numeric
Dominique Leuenberger
2019-10-25 16:43:11 +0000
1514976690Accepting request 742269 from devel:languages:python:numeric
Dominique Leuenberger
2019-10-24 21:09:33 +0000
680c0efed6Accepting request 742269 from devel:languages:python:numeric
OBS User buildservice-autocommit
2019-10-24 21:09:33 +0000
dd0bf7e244Updating link to change in openSUSE:Factory/python-numba revision 20.0
OBS User buildservice-autocommit
2019-10-24 21:09:33 +0000
0d201e4551Accepting request 742739 from home:TheBlackCat:branches:devel:languages:python:numeric
Todd R
2019-10-24 20:55:43 +0000
26577d0dc0Accepting request 742268 from home:TheBlackCat:branches:devel:languages:python:numeric
Todd R
2019-10-24 00:59:28 +0000
366641fe0bAccepting request 733400 from devel:languages:python:numeric
Dominique Leuenberger
2019-09-26 18:43:13 +0000
a0b25083c7- Update to 0.45.1: * Many fixes and changes for llvm/cuda updates See CHANGE_LOG file for details - Update skip-failing-tests.patch to skip one more failing test
Tomáš Chvátal
2019-09-26 11:11:14 +0000
a8949686aeAccepting request 693357 from devel:languages:python:numeric
Dominique Leuenberger
2019-04-12 07:17:34 +0000
3e47b4af36Accepting request 693356 from home:mcepl:branches:devel:languages:python:numericMatej Cepl2019-04-11 23:25:34 +0000
e33a623c75Accepting request 686900 from devel:languages:python:numeric
Dominique Leuenberger
2019-03-20 12:22:31 +0000
201f1fffadAccepting request 686899 from home:mcepl:branches:devel:languages:python:numericMatej Cepl2019-03-20 10:23:52 +0000
359730e8d9Accepting request 668985 from devel:languages:python:numeric
Stephan Kulow
2019-02-24 16:09:49 +0000
05e5f9a3e6Accepting request 668822 from home:apersaud:branches:devel:languages:python:numeric
Tomáš Chvátal
2019-01-28 08:04:18 +0000
3b8b44c7fcAccepting request 653423 from devel:languages:python:numeric
Dominique Leuenberger
2018-12-03 09:12:16 +0000
1a1ea1f49bAccepting request 653378 from home:apersaud:branches:devel:languages:python:numeric
Tomáš Chvátal
2018-12-02 09:16:04 +0000
848ace6e8cAccepting request 644977 from devel:languages:python:numeric
Dominique Leuenberger
2018-10-29 13:22:25 +0000
76a3602699Accepting request 644969 from home:jengelh:branches:devel:languages:python:numeric
Todd R
2018-10-27 02:31:23 +0000