Skip to content

Commit

Permalink
Added instruction set details to unit test report.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyo-masui committed Sep 27, 2024
1 parent 52aec3b commit 385a6f3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import pytest
import bitshuffle

def pytest_report_header(config):
sse2 = bitshuffle.using_SSE2()
avx2 = bitshuffle.using_AVX2()
avx512 = bitshuffle.using_AVX512()
neon = bitshuffle.using_NEON()
return f"SSE2 {sse2}; AVX2 {avx2}; AVX512 {avx512}; NEON {neon}"

0 comments on commit 385a6f3

Please sign in to comment.