Announcing Python-Blosc2 3.0.0 (final release)
==
The Blosc development team is pleased to announce the final release of
Python-Blosc2 3.0.0. Now, we will be producing conda(-forge) packages,
as well as providing wheels for the most common platforms, as
Thanks for everyone's help, I'll look into those links matti.
___
NumPy-Discussion mailing list -- numpy-discussion@python.org
To unsubscribe send an email to numpy-discussion-le...@python.org
https://mail.python.org/mailman3/lists/numpy-discussion.python
Hi Andrew,
I have no clue what future versions of Python will do, but on my setup
there is no optimization done on this (I have taken arrays as float32, just
to show the differences better):
In [19]: N = 10
In [20]: x0 = numpy.random.uniform(size=(N, )).astype(numpy.float32)
In [21]: h = numpy.ra
The current CPython 3.13 version only has (as far as I know) two types
of code-rewriting optimizations:
- a rudimentary JIT[1] that replaces byte code with machine code,
without changing semantics
- a specializer[2] that will take things like a + b, and simplify the
byte code if both a and b are kn