Skip to content

Commit

Permalink
Try to enable half-precision float tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Dec 6, 2024
1 parent 2b12227 commit 8437001
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- os: ubuntu-latest
name: "STL"
backend: "-DRTNEURAL_STL=ON"
- os: ubuntu-latest
name: "STL w/ half-precision floats"
backend: "-DRTNEURAL_STL=ON -DCMAKE_CXX_STANDARD=23"
- os: windows-latest
name: "Eigen"
backend: "-DRTNEURAL_EIGEN=ON"
Expand Down Expand Up @@ -67,6 +70,13 @@ jobs:
backend: "-DRTNEURAL_STL=ON"

steps:
- name: Install Linux Deps
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13
- name: Get latest CMake
uses: lukka/get-cmake@latest

Expand Down

0 comments on commit 8437001

Please sign in to comment.