Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/daphne-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: all clean run

all:
$(MAKE) -C src/points2image

clean:
$(MAKE) -C src/points2image clean

run:
$(MAKE) -C src/points2image run
7 changes: 7 additions & 0 deletions src/hpl-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: all clean

all:
$(MAKE) -C src/hpl-2.3

clean:
$(MAKE) -C src/hpl-2.3 clean
10 changes: 10 additions & 0 deletions src/local-ht-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: all clean run

all:
$(MAKE) -C src

clean:
$(MAKE) -C src clean

run:
$(MAKE) -C src run
10 changes: 10 additions & 0 deletions src/logic-resim-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: all clean run

all:
$(MAKE) -C Simulation

clean:
$(MAKE) -C Simulation clean

run:
$(MAKE) -C Simulation run
12 changes: 12 additions & 0 deletions src/mf-sgd-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.PHONY: all clean run

all:
$(MAKE) -C src

clean:
$(MAKE) -C src clean

# Netflix dataset must be downloaded first (see data/README); run.sh
# invokes the trained binary with the dataset paths.
run: all
cd data/netflix && ./run.sh
12 changes: 12 additions & 0 deletions src/miniFE-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.PHONY: all clean run

all:
$(MAKE) -C src

clean:
$(MAKE) -C src clean

# src/Makefile builds miniFE.x but doesn't define a `run:` target; invoke
# the binary directly with a small default problem size.
run: all
cd src && ./miniFE.x -nx 128 -ny 128 -nz 128
13 changes: 13 additions & 0 deletions src/si-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# si-hip is the only HIP benchmark that builds via CMake instead of Make.
# This wrapper drives the CMake build out-of-tree under release/ and
# matches the all/clean interface the rest of HeCBench expects.

.PHONY: all clean

all:
mkdir -p release
cd release && cmake $(CURDIR) -DCMAKE_BUILD_TYPE=Release
$(MAKE) -C release

clean:
rm -rf release
10 changes: 10 additions & 0 deletions src/snicit-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: all clean run

all:
$(MAKE) -C bin

clean:
$(MAKE) -C bin clean

run:
$(MAKE) -C bin run
10 changes: 10 additions & 0 deletions src/tgvnn-hip/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: all clean run

all:
$(MAKE) -C src

clean:
$(MAKE) -C src clean

run:
$(MAKE) -C src run