Skip to content

Commit

Permalink
ParU: Handle some demos not being built in Makefile target demos
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuetzel committed Oct 21, 2023
1 parent 252ba04 commit c2ba3fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ParU/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ all: library

demos: library
( cd build && cmake $(CMAKE_OPTIONS) -DDEMO=1 .. && cmake --build . --config Release -j${JOBS} )
( cd build && ./paru_simplec < ../Matrix/b1_ss.mtx)
( cd build && ./paru_simple < ../Matrix/west0067.mtx )
( cd build && ./paru_democ < ../Matrix/west0067.mtx)
( cd build && ./paru_demo < ../Matrix/xenon1.mtx )
( cd build && ./paru_simplec$(EXEEXT) < ../Matrix/b1_ss.mtx )
( cd build && ./paru_simple$(EXEEXT) < ../Matrix/west0067.mtx )
( cd build && [ -f paru_democ$(EXEEXT) ] && ./paru_democ$(EXEEXT) < ../Matrix/west0067.mtx || true )
( cd build && [ -f paru_demo$(EXEEXT) ] && ./paru_demo$(EXEEXT) < ../Matrix/xenon1.mtx || true )

cov:
( cd Tcov && $(MAKE) )
Expand Down

0 comments on commit c2ba3fb

Please sign in to comment.