Add some code to expand convolution to 3d (still work in progress). #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: raspberrypi-4-unit-tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: raspberrypi-4 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: configure & build | |
run: | | |
cd lib && ./configure --enable-neon && cd .. | |
make -j 4 -C lib | |
make -j 4 -C bin | |
make -j 4 -C test | |
- name: tests | |
run: | | |
make -C test test |