You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
$ export PULP_RISCV_GCC_TOOLCHAIN=/xxx/v1.0.16-pulp-riscv-gcc-centos-7
$ source pulp-runtime/configs/pulpissimo.sh
$ cd regression_tests/sequential_bare_tests/fft
$ make clean
$ make all
LD pulp-platform/regression_tests/sequential_bare_tests/fft/build/test/test
pulp-platform/regression_tests/sequential_bare_tests/fft/build/test/main.o: In function`main':
main.c:(.text.startup.main+0x18): undefined reference to `synch_barrier'main.c:(.text.startup.main+0x24): undefined reference to `synch_barrier'main.c:(.text.startup.main+0x8e): undefined reference to `synch_barrier'collect2: error: ld returned 1 exit status...
synch_barrier is declared in include/pulp.h, and defined in kernel/cluster.c, but kernel/cluster.c will not be compiled when using pulpissimo configuration.
To override this issue, I edit include/pulp.h by replacing
When running tests from https://github.com/pulp-platform/regression_tests/
E.g.
regression_tests/sequential_bare_tests/fft
synch_barrier
is declared ininclude/pulp.h
, and defined inkernel/cluster.c
, butkernel/cluster.c
will not be compiled when using pulpissimo configuration.To override this issue, I edit
include/pulp.h
by replacingby
The text was updated successfully, but these errors were encountered: