18 lines
471 B
Text
18 lines
471 B
Text
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
|
|
|
#include <doctest.h>
|
|
#include <taskflow/taskflow.hpp>
|
|
#include <taskflow/cuda/cudaflow.hpp>
|
|
|
|
void __global__ testKernel() {}
|
|
|
|
TEST_CASE("cudaFlowCapturer.noEventError") {
|
|
tf::cudaFlow f;
|
|
f.capture([](tf::cudaFlowCapturer& cpt) {
|
|
cpt.on([] (cudaStream_t stream) {
|
|
testKernel<<<256,256,0,stream>>>();
|
|
});
|
|
REQUIRE((cudaGetLastError() == cudaSuccess));
|
|
});
|
|
REQUIRE((cudaGetLastError() == cudaSuccess));
|
|
}
|