Skip to content

Commit

Permalink
add SUMMA flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffhammond committed Dec 6, 2024
1 parent 317e566 commit 0bf7d77
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHAPEL/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# TODO Find a way to make this fit into the existing Makefile system

OPTFLAGS = --fast #-sassertNoSlicing
#OPTFLAGS_SUMMA = -suseBlockDist=true -sblasImpl=blas
OPTFLAGS_SUMMA = -s useBlockDist=true -s blasImpl=off -s lapackImpl=off
#MODULEFLAGS = --module-dir .

# Debugging
Expand All @@ -23,5 +25,8 @@ all: $(EXECUTABLE)
%: %.chpl
$(CHPL) $(OPTFLAGS) $(MODULEFLAGS) $(DEBUGFLAGS) $*.chpl -o $*

dgemm-summa: dgemm-summa.chpl
$(CHPL) $(OPTFLAGS) $(OPTFLAGS_SUMMA) $(MODULEFLAGS) $(DEBUGFLAGS) $^ -o $@

clean:
rm -f $(EXECUTABLE)

0 comments on commit 0bf7d77

Please sign in to comment.