Skip to content

Commit 128216c

Browse files
committed
Mention the super-simple format
1 parent f547296 commit 128216c

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

doc/python-blosc2.rst

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,41 +28,37 @@
2828
:column: col-lg-4 col-md-6 col-sm-12 mb-4
2929
:container: + gap-3
3030

31-
**Excellent compression capabilities**
31+
**N-dimensional, compressed arrays**
3232

3333

34-
Blosc2 combines `advanced codecs and filters <https://www.blosc.org/posts/bytedelta-enhance-compression-toolset/>`_ for efficient compression, reducing storage space while maintaining high performance.
34+
`NDArray objects <https://www.blosc.org/python-blosc2/getting_started/tutorials/01.ndarray-basics.html>`_ allow for efficient storage and manipulation of multidimensional data, making it easy to work with complex data sets.
3535

3636
---
3737

38-
**Optimized compute engine**
38+
**Excellent compression capabilities**
3939

4040

41-
Blosc2 accelerates complex mathematical operations and reductions with an
42-
`optimized compute engine <https://www.blosc.org/posts/ndim-reductions/>`_,
43-
achieving high-performance for computing and data analysis.
41+
Combines `advanced codecs and filters <https://www.blosc.org/posts/bytedelta-enhance-compression-toolset/>`_ for efficient compression, reducing storage space while maintaining high performance.
4442

4543
---
4644

47-
**N-dimensional, compressed arrays**
45+
**Optimized compute engine**
4846

4947

50-
`NDArray objects <https://www.blosc.org/python-blosc2/getting_started/tutorials/01.ndarray-basics.html>`_ allow for efficient storage and manipulation of multidimensional data, making it easy to work with complex data sets.
48+
For accelerating complex mathematical operations and reductions with an `optimized compute engine <https://www.blosc.org/posts/ndim-reductions/>`_, achieving high-performance for computing and data analysis.
5149

5250
---
5351

54-
**Binary data optimization**
55-
52+
**Super simple format**
5653

57-
Designed to compute with compressed binary data (integers, floats, bools), Blosc2 is specially meant for
58-
`high-performance numerical applications <https://nbviewer.org/github/Blosc/python-blosc2/blob/main/bench/lazyarray-expr-small-dask.ipynb>`_.
54+
Blosc2's `simple format <https://github.com/Blosc/c-blosc2/blob/main/README_FORMAT.rst>`_, with specs taking less than 1000 lines, makes it easy to integrate with other systems and tools.
5955

6056
---
6157

6258
**Flexible storage**
6359

6460

65-
By offering storage in `memory, disk <https://github.com/Blosc/python-blosc2/blob/main/doc/getting_started/tutorials/01.ndarray-basics.ipynb>`_, or `network <https://ironarray.io/caterva2>`_, Blosc2 adapts to your needs and facilitates integration into various systems.
61+
Can store data in `memory, disk <https://github.com/Blosc/python-blosc2/blob/main/doc/getting_started/tutorials/01.ndarray-basics.ipynb>`_, or `network <https://ironarray.io/caterva2>`_, adapting to your needs and facilitates integration into various systems.
6662

6763
---
6864

src/blosc2/lazyexpr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1670,7 +1670,7 @@ class LazyExpr(LazyArray):
16701670
16711671
This is not meant to be called directly from user space.
16721672
1673-
Once the lazy expression is created, it can be evaluated via :func:`LazyExpr.eval`.
1673+
Once the lazy expression is created, it can be evaluated via :func:`LazyExpr.compute`.
16741674
"""
16751675

16761676
def __init__(self, new_op): # noqa: C901
@@ -2726,7 +2726,7 @@ def lazyudf(
27262726
kwargs: Any, optional
27272727
Keyword arguments that are supported by the :func:`empty` constructor.
27282728
These arguments will be used by the :meth:`LazyArray.__getitem__` and
2729-
:meth:`LazyArray.eval` methods. The
2729+
:meth:`LazyArray.compute` methods. The
27302730
last one will ignore the `urlpath` parameter passed in this function.
27312731
27322732
Returns

0 commit comments

Comments
 (0)