Skip to content
Snippets Groups Projects
Commit 091e277b authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Added a test that contains a new way of walking the B-H tree that involves...

Added a test that contains a new way of walking the B-H tree that involves much fewer cell-multipole tasks than previously.
parent 2f29f7b8
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ AM_CFLAGS = -g -O3 -Wall -Werror -I../src -ffast-math -fstrict-aliasing \
AM_LDFLAGS = -lm # -fsanitize=address
# Set-up the library
bin_PROGRAMS = test test_qr test_bh test_bh_sorted test_fmm
bin_PROGRAMS = test test_qr test_bh test_bh_sorted test_fmm test_bh_new
# Sources for test
test_SOURCES = test.c
......@@ -50,8 +50,14 @@ test_bh_sorted_SOURCES = test_bh_sorted.c
test_bh_sorted_CFLAGS = $(AM_CFLAGS)
test_bh_sorted_LDADD = ../src/.libs/libquicksched.a
# Sources for test_fmm_sorted
# Sources for test_fmm
test_fmm_SOURCES = test_fmm.c
test_fmm_CFLAGS = $(AM_CFLAGS)
test_fmm_LDADD = ../src/.libs/libquicksched.a
# Sources for test_bh_new
test_bh_new_SOURCES = test_bh_new.c
test_bh_new_CFLAGS = $(AM_CFLAGS)
test_bh_new_LDADD = ../src/.libs/libquicksched.a
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment