Skip to content

Commit f6869ab

Browse files
committed
C-Blosc sources in submodule now
1 parent e896c7e commit f6869ab

487 files changed

Lines changed: 18 additions & 166694 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v3
16+
with:
17+
submodules: 'recursive'
1618

1719
- name: Set up Python ${{ matrix.python-version }}
1820
uses: actions/setup-python@v4
@@ -46,6 +48,9 @@ jobs:
4648
steps:
4749
- name: Checkout
4850
uses: actions/checkout@v3
51+
with:
52+
submodules: 'recursive'
53+
4954
- name: Set up QEMU
5055
id: qemu
5156
uses: docker/setup-qemu-action@v2

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
steps:
3434
- name: Checkout repository
3535
uses: actions/checkout@v3
36+
with:
37+
submodules: 'recursive'
3638

3739
# Initializes the CodeQL tools for scanning.
3840
- name: Initialize CodeQL

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "blosc/c-blosc"]
2+
path = blosc/c-blosc
3+
url = [email protected]:Blosc/c-blosc.git

RELEASE_NOTES.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@
1111
Changes from 1.10.6 to 1.10.7
1212
=============================
1313

14-
#XXX version-specific blurb XXX#
14+
* Internal C-Blosc sources updated to 1.21.2 (they are a git submodule now).
15+
16+
* Many small code improvements, improved consistency and typo fixes.
17+
Thanks to Dimitri Papadopoulos Orfanos.
18+
19+
1520

1621

1722
Changes from 1.10.5 to 1.10.6

bench/compress_ptr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
td = time.time() - t0
5757
assert((in_ == out).all())
5858
print(" *** %-8s, %-10s *** %6.3f s (%.2f GB/s) / %5.3f s (%.2f GB/s)" % (
59-
cname, blosc.filters[filter], tc, ((N*8 / tc) / 2**30), td, ((N*8 / td) / 2**30)), end='')
59+
cname, blosc.filters[shuffle], tc, ((N*8 / tc) / 2**30), td, ((N*8 / td) / 2**30)), end='')
6060
print("\tCompr. ratio: %5.1fx" % (N*8. / len(c)))

blosc/c-blosc

Submodule c-blosc added at bdbb700

blosc/c-blosc/.editorconfig

Lines changed: 0 additions & 20 deletions
This file was deleted.

blosc/c-blosc/.github/workflows/cmake.yml

Lines changed: 0 additions & 161 deletions
This file was deleted.

blosc/c-blosc/.github/workflows/fuzz.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

blosc/c-blosc/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)