Skip to content

Instantly share code, notes, and snippets.

@cgmb
Created February 14, 2024 17:41
Show Gist options
  • Save cgmb/d21c150c85b6ea722319a470b1fa3773 to your computer and use it in GitHub Desktop.
Save cgmb/d21c150c85b6ea722319a470b1fa3773 to your computer and use it in GitHub Desktop.
rocALUTION examples makefile
LDLIBS ?= -lrocalution
examples = amg \
as-precond \
async \
benchmark \
bicgstab \
block-precond \
cg-amg \
cg-rsamg \
cg-saamg \
cg \
cmk \
complex \
direct \
fcg \
fgmres \
fixed-point \
gmres \
idr \
key \
me-preconditioner \
mixed-precision \
power-method \
sa-amg \
simple-spmv \
sp-precond \
stencil \
tns \
ua-amg \
var-precond
.PHONY: all
all: $(examples)
.PHONY: clean
clean:
$(RM) $(examples)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment