Skip to content

Commit

Permalink
Merge pull request gnuradio#657 from argilo/log2-tol
Browse files Browse the repository at this point in the history
Increase tolerance for volk_32f_log2_32f
  • Loading branch information
jdemel authored Oct 22, 2023
2 parents fe46337 + 8823cff commit 39f0f88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
compiler:
compiler:
- { name: g++-7, cc: gcc-7, cxx: g++-7, distro: ubuntu-20.04 }
- { name: g++-8, cc: gcc-8, cxx: g++-8, distro: ubuntu-20.04 }
- { name: g++-9, cc: gcc-9, cxx: g++-9, distro: ubuntu-latest }
Expand All @@ -33,7 +33,7 @@ jobs:
# - { name: clang-15, cc: clang-15, cxx: clang++-15, distro: ubuntu-latest }

runs-on: ${{ matrix.compiler.distro }}

steps:
- uses: actions/[email protected]
with:
Expand Down Expand Up @@ -107,14 +107,14 @@ jobs:
- arch: riscv64
distro: ubuntu22.04
compiler: { name: g++-12, cc: gcc-12, cxx: g++-12 }

steps:
- uses: actions/[email protected]
with:
submodules: 'recursive'
- uses: uraimo/[email protected]
name: Build in non-x86 container
continue-on-error: ${{ contains(fromJson('["ppc64le", "s390x"]'), matrix.arch) || contains(fromJson('["clang-14"]'), matrix.compiler.name) }}
continue-on-error: ${{ contains(fromJson('["ppc64le", "s390x"]'), matrix.arch) }}
id: build
with:
arch: ${{ matrix.arch }}
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:

# build-windows-msys2:
# name: Build on windows-latest using MinGW and MSYS2

# runs-on: windows-latest
# steps:
# - uses: msys2/setup-msys2@v2
Expand All @@ -231,7 +231,7 @@ jobs:
# - name: Build
# shell: msys2 {0}
# run: cd build && make -j$(nproc)
# - name: Test
# - name: Test
# shell: msys2 {0}
# run: |
# cd build
Expand Down
2 changes: 1 addition & 1 deletion lib/kernel_tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ std::vector<volk_test_case_t> init_test_list(volk_test_params_t test_params)
QA(VOLK_INIT_TEST(volk_32f_index_min_32u, test_params))
QA(VOLK_INIT_TEST(volk_32fc_32f_multiply_32fc, test_params))
QA(VOLK_INIT_TEST(volk_32fc_32f_add_32fc, test_params))
QA(VOLK_INIT_TEST(volk_32f_log2_32f, test_params.make_absolute(1e-5)))
QA(VOLK_INIT_TEST(volk_32f_log2_32f, test_params.make_absolute(1.5e-5)))
QA(VOLK_INIT_TEST(volk_32f_expfast_32f, test_params_inacc_tenth))
QA(VOLK_INIT_TEST(volk_32f_x2_pow_32f, test_params_inacc))
QA(VOLK_INIT_TEST(volk_32f_sin_32f, test_params_inacc))
Expand Down

0 comments on commit 39f0f88

Please sign in to comment.