https://github.com/ska-sa/spead2
Name Target Message Date
HEAD 018ec94 Merge pull request #315 from ska-sa/gro Implement support for generic receive offload 16 February 2024, 11:04:44 UTC
refs/heads/1.x 4426188 Downgrade trollius in requirements.txt It was set to trollius 2.2, but that version doesn't install on Python 3, which broke readthedocs. 15 September 2019, 19:39:36 UTC
refs/heads/2.x 97eff12 bootstrap.sh should be run AFTER updating version Because autoconf bakes it into the configure script. 31 August 2020, 06:30:21 UTC
refs/heads/address-per-heap c630dbd Merge branch 'master' into address-per-heap 12 November 2019, 14:22:51 UTC
refs/heads/dependabot/github_actions/pypa/cibuildwheel-2.17.0 173877c Bump pypa/cibuildwheel from 2.16.5 to 2.17.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.16.5 to 2.17.0. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.16.5...v2.17.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> 18 March 2024, 09:20:52 UTC
refs/heads/dependabot/pip/production-group-fb82a53692 abc52b6 Bump the production-group group with 6 updates Bumps the production-group group with 6 updates: | Package | From | To | | --- | --- | --- | | [sphinx](https://github.com/sphinx-doc/sphinx) | `4.0.3` | `7.1.2` | | [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) | `0.5.2` | `1.3.0` | | [breathe](https://github.com/michaeljones/breathe) | `4.30.0` | `4.35.0` | | [pytest](https://github.com/pytest-dev/pytest) | `7.4.0` | `7.4.3` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.21.0` | `0.21.1` | | [pytest-timeout](https://github.com/pytest-dev/pytest-timeout) | `2.1.0` | `2.2.0` | Updates `sphinx` from 4.0.3 to 7.1.2 - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v4.0.3...v7.1.2) Updates `sphinx-rtd-theme` from 0.5.2 to 1.3.0 - [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst) - [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/0.5.2...1.3.0) Updates `breathe` from 4.30.0 to 4.35.0 - [Release notes](https://github.com/michaeljones/breathe/releases) - [Changelog](https://github.com/breathe-doc/breathe/blob/main/CHANGELOG.rst) - [Commits](https://github.com/michaeljones/breathe/compare/v4.30.0...v4.35.0) Updates `pytest` from 7.4.0 to 7.4.3 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.4.0...7.4.3) Updates `pytest-asyncio` from 0.21.0 to 0.21.1 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.21.0...v0.21.1) Updates `pytest-timeout` from 2.1.0 to 2.2.0 - [Commits](https://github.com/pytest-dev/pytest-timeout/compare/2.1.0...2.2.0) --- updated-dependencies: - dependency-name: sphinx dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-group - dependency-name: sphinx-rtd-theme dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-group - dependency-name: breathe dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-group - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-group - dependency-name: pytest-asyncio dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-group - dependency-name: pytest-timeout dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-group ... Signed-off-by: dependabot[bot] <support@github.com> 24 November 2023, 14:21:49 UTC
refs/heads/dmabuf e13203a Experimental support for wrapping ibv_reg_dmabuf_mr It's 100% untested, apart from compiling. Also no documentation or Python support yet. 17 February 2022, 12:59:26 UTC
refs/heads/dsim_hack 764badd Ok this is getting ugly 16 March 2022, 11:46:36 UTC
refs/heads/gcc_static_link_hack d5a9096 Linking arg to build statically. Our old build boxes didn't have the required version of gcc, so this means you can link statically against a new build of gcc that isn't installed system-wide. 25 November 2015, 13:00:24 UTC
refs/heads/master 018ec94 Merge pull request #315 from ska-sa/gro Implement support for generic receive offload 16 February 2024, 11:04:44 UTC
refs/heads/memcpy_nontemporal_rw fb1df5a Add AVX variant of memcpy_nontemporal This still needs proper integration into the test suite so that both the SSE and AVX versions get tested. 02 November 2021, 09:27:18 UTC
refs/heads/msg-zerocopy 1e52948 More work on MSG_ZEROCOPY It now works some of the time. The main problem seems to be that the skb size is calculated according to the number of pages involved, which makes the socket buffer fill up much faster than the tests intended. 05 December 2023, 15:28:37 UTC
refs/heads/netifaces2 e488f0f Switch to netifaces2 netifaces is deprecated. netifaces2 seems to have non-deterministic iteration order, which was causing the senders and receivers in TestPassthroughUdp6Multicast to use a different interface. Fix by adding @functools.lru_cache to cache the result after the first call. 09 February 2024, 13:23:41 UTC
refs/heads/numba-0.59 47bd4d0 More fixes to CI requirements.txt and requirements-3.12.txt are no longer compatible to install at the same time. 05 February 2024, 07:36:42 UTC
refs/heads/pytest-timeout-thread 86f0e62 Use thread method of pytest-timeout This should make things fail faster when a packet gets dropped. 24 February 2022, 10:10:15 UTC
refs/heads/send-ibv-unicast 9efc7b0 Merge branch 'master' into send-ibv-unicast 12 February 2020, 12:27:05 UTC
refs/heads/slice-heap-reference-list 4a7fcd9 Support slice indexing on HeapReferenceList This is a convenience for sending a partial list at the start or end of transmission. It's not optimal because it performs O(n) reference-counting operations (which is what HeapReferenceList was created to avoid), but that's no worse than Python list slicing. The alternative would be to build something akin to numpy's indexing, which just gives a view of the base object, but that would add a lot of complexity. 25 January 2024, 14:20:01 UTC
refs/heads/tutorial a8cf1a3 Add more #includes to examples These are issues picked up by iwyu. 02 February 2024, 10:00:49 UTC
refs/tags/v0.2.0 0b8e794 Prepare for 0.2.0 release 09 September 2015, 07:49:44 UTC
back to top