Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bbguimaraes
books
Commits
52efe21c
Commit
52efe21c
authored
Jan 02, 2020
by
bbguimaraes
Browse files
hcwocl: add `README`, `Makefile`
parent
53ac98b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
hcwocl/Makefile
0 → 100644
View file @
52efe21c
CPPFLAGS
=
-I
.
-I
TestBed/
-DCOMPUTE_DEVICE_CL
-DCL_TARGET_OPENCL_VERSION
=
200
CXXFLAGS
=
-std
=
c++20
-O2
LDLIBS
=
-lglut
-lGLU
-lGL
-lOpenCL
-lpthread
-lm
OBJECTS
=
\
TestBed/main.o
\
TestBed/Demos/Dem2Demo.o
\
Common/Base/ThreadPool.o
\
Common/Math/RadixSortHost.o
.PHONY
:
all clean
all
:
TestBed/TestBed
clean
:
rm
-f
$(OBJECTS)
TestBed/TestBed
:
$(OBJECTS)
$(CXX)
-o
$@
$^
$(LDLIBS)
hcwocl/README.md
0 → 100644
View file @
52efe21c
Heterogeneous Computing with OpenCL
===================================
Particle simulation from chapter 10, modified to use portable code instead of
Windows-only APIs.
Based on the source code available in the website:
http://www.heterogeneouscompute.org/?page_id=7
See the website for copyright/license.
building
--------
```
$ make
```
demos
-----


Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment