llvm-project/parallel-libs/streamexecutor
Jason Henline 46b5e48fde [SE] Use real HostPlatformDevice for testing
Summary:
Replace uses of SimpleHostPlatformDevice in tests with
HostPlatformDevice.

Reviewers: jlebar

Subscribers: jlebar, jprice, parallel_libs-commits

Differential Revision: https://reviews.llvm.org/D24519

llvm-svn: 281384
2016-09-13 20:14:44 +00:00
..
examples [SE] Host platform implementation 2016-09-13 19:28:02 +00:00
include/streamexecutor [SE] Use real HostPlatformDevice for testing 2016-09-13 20:14:44 +00:00
lib [SE] Host platform implementation 2016-09-13 19:28:02 +00:00
tools/streamexecutor-config Add streamexecutor-config 2016-09-08 16:12:33 +00:00
unittests [SE] Use real HostPlatformDevice for testing 2016-09-13 20:14:44 +00:00
CMakeLists.txt [SE] Stop using llvm-config --cxxflags 2016-09-13 15:44:18 +00:00
Doxyfile.in Add streamexecutor-config 2016-09-08 16:12:33 +00:00
README.txt
customdoxygen.css [SE] Doc tweaks 2016-09-02 17:59:12 +00:00

README.txt

StreamExecutor
==============

StreamExecutor is a wrapper around CUDA and OpenCL (host-side) programming
models (runtimes). This abstraction cleanly permits host code to target either
CUDA or OpenCL devices with identically-functioning data parallel kernels. It
manages the execution of concurrent work targeting the accelerator, similar to a
host-side Executor.

This version of StreamExecutor can be built either as a sub-project of the LLVM
project or as a standalone project depending on LLVM as an external package.