
Summary: Acxxel is basically a simplified redesign of StreamExecutor. Here are the major points where Acxxel differs from the current StreamExecutor design: * Acxxel doesn't support the kernel and kernel loader types designed for emission by the compiler to support type-safe kernel launches. For CUDA, kernels in Acxxel can be seamlessly launched using the standard CUDA triple-chevron kernel launch syntax that is available with clang and nvcc. For CUDA and OpenCL, kernel arguments can be passed in the old-fashioned way, as one array of pointers to arguments and another array of argument sizes. Although OpenCL doesn't get a type-safe kernel launch method, it does still get the benefit of all the memory management wrappers. In the future, clang may add support for triple-chevron OpenCL kernel launchs, or some other type-safe OpenCL kernel launch method. * Acxxel does not depend on any other code in LLVM, so it builds completely independently from LLVM. The goal will be to check in Acxxel and remove StreamExecutor, or perhaps to remove the old StreamExecutor and rename Acxxel to StreamExecutor, so I think Acxxel should be thought of as a new version of StreamExecutor, not as a separate project. Reviewers: jlebar, jprice Subscribers: beanz, mgorny, modocache, parallel_libs-commits Differential Revision: https://reviews.llvm.org/D25701 llvm-svn: 285111
113 lines
3.3 KiB
C++
113 lines
3.3 KiB
C++
//===--- acxxel.cpp - Implementation details for the Acxxel API -----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "acxxel.h"
|
|
#include "config.h"
|
|
|
|
#include <algorithm>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
namespace acxxel {
|
|
|
|
namespace cuda {
|
|
Expected<Platform *> getPlatform();
|
|
} // namespace cuda
|
|
|
|
namespace opencl {
|
|
Expected<Platform *> getPlatform();
|
|
} // namespace opencl
|
|
|
|
void logWarning(const std::string &Message) {
|
|
std::cerr << "WARNING: " << Message << "\n";
|
|
}
|
|
|
|
Expected<Platform *> getCUDAPlatform() {
|
|
#ifdef ACXXEL_ENABLE_CUDA
|
|
return cuda::getPlatform();
|
|
#else
|
|
return Status("library was build without CUDA support");
|
|
#endif
|
|
}
|
|
|
|
Expected<Platform *> getOpenCLPlatform() {
|
|
#ifdef ACXXEL_ENABLE_OPENCL
|
|
return opencl::getPlatform();
|
|
#else
|
|
return Status("library was build without OpenCL support");
|
|
#endif
|
|
}
|
|
|
|
Stream::Stream(Stream &&) noexcept = default;
|
|
Stream &Stream::operator=(Stream &&) noexcept = default;
|
|
|
|
Status Stream::sync() {
|
|
return takeStatusOr(ThePlatform->streamSync(TheHandle.get()));
|
|
}
|
|
|
|
Status Stream::waitOnEvent(Event &Event) {
|
|
return takeStatusOr(ThePlatform->streamWaitOnEvent(
|
|
TheHandle.get(), ThePlatform->getEventHandle(Event)));
|
|
}
|
|
|
|
Stream &
|
|
Stream::addCallback(std::function<void(Stream &, const Status &)> Callback) {
|
|
setStatus(ThePlatform->addStreamCallback(*this, std::move(Callback)));
|
|
return *this;
|
|
}
|
|
|
|
Stream &Stream::asyncKernelLaunch(const Kernel &TheKernel,
|
|
KernelLaunchDimensions LaunchDimensions,
|
|
Span<void *> Arguments,
|
|
Span<size_t> ArgumentSizes,
|
|
size_t SharedMemoryBytes) {
|
|
setStatus(ThePlatform->rawEnqueueKernelLaunch(
|
|
TheHandle.get(), TheKernel.TheHandle.get(), LaunchDimensions, Arguments,
|
|
ArgumentSizes, SharedMemoryBytes));
|
|
return *this;
|
|
}
|
|
|
|
Stream &Stream::enqueueEvent(Event &E) {
|
|
setStatus(ThePlatform->enqueueEvent(ThePlatform->getEventHandle(E),
|
|
TheHandle.get()));
|
|
return *this;
|
|
}
|
|
|
|
Event::Event(Event &&) noexcept = default;
|
|
Event &Event::operator=(Event &&) noexcept = default;
|
|
|
|
bool Event::isDone() { return ThePlatform->eventIsDone(TheHandle.get()); }
|
|
|
|
Status Event::sync() { return ThePlatform->eventSync(TheHandle.get()); }
|
|
|
|
Expected<float> Event::getSecondsSince(const Event &Previous) {
|
|
Expected<float> MaybeSeconds = ThePlatform->getSecondsBetweenEvents(
|
|
Previous.TheHandle.get(), TheHandle.get());
|
|
if (MaybeSeconds.isError())
|
|
MaybeSeconds.getError();
|
|
return MaybeSeconds;
|
|
}
|
|
|
|
Expected<Kernel> Program::createKernel(const std::string &Name) {
|
|
Expected<void *> MaybeKernelHandle =
|
|
ThePlatform->rawCreateKernel(TheHandle.get(), Name);
|
|
if (MaybeKernelHandle.isError())
|
|
return MaybeKernelHandle.getError();
|
|
return Kernel(ThePlatform, MaybeKernelHandle.getValue(),
|
|
ThePlatform->getKernelHandleDestructor());
|
|
}
|
|
|
|
Program::Program(Program &&) noexcept = default;
|
|
Program &Program::operator=(Program &&That) noexcept = default;
|
|
|
|
Kernel::Kernel(Kernel &&) noexcept = default;
|
|
Kernel &Kernel::operator=(Kernel &&That) noexcept = default;
|
|
|
|
} // namespace acxxel
|