Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Thread Kernel Launch #1

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"files.associations": {
"functional": "c",
"__functional_03": "c",
"target": "c"
}
}
28 changes: 0 additions & 28 deletions LICENSE

This file was deleted.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ all: clean MessageDisplay compile run
.PHONY: compile
compile: MessageDisplay
mkdir bin
$(CC) -I./include -lm -O3 -fopenmp --offload-arch=native $(CWD)/$(DIR)/main.c -o bin/$(DIR).o
$(CC) -g -I./include -lm -O3 -fopenmp --offload-arch=native $(CWD)/$(DIR)/main.c -o bin/$(DIR).o
@echo "====COMPILE DONE===="

.PHONY: run
run:
./bin/$(DIR).o
LIBOMPTARGET_INFO=16 ./bin/$(DIR).o

.PHONY: MessageDisplay
MessageDisplay:
Expand Down
1 change: 0 additions & 1 deletion README.md

This file was deleted.

Binary file added bin/threaded_kernel_launch.o
Binary file not shown.
19 changes: 0 additions & 19 deletions include/libompreg.c

This file was deleted.

12 changes: 0 additions & 12 deletions include/libompreg.h

This file was deleted.

136 changes: 0 additions & 136 deletions include/ompreg.h

This file was deleted.

Loading