Searched refs:waitfor_all (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/libs/fiber/doc/ |
D | cuda.qbk | 62 …auto result = boost::fibers::cuda::waitfor_all( stream); // suspend fiber till CUDA stream has fin… 85 std::tuple< cudaStream_t, cudaError_t > waitfor_all( cudaStream_t st); 86 std::vector< std::tuple< cudaStream_t, cudaError_t > > waitfor_all( cudaStream_t ... st); 99 std::tuple< cudaStream_t, cudaError_t > waitfor_all( cudaStream_t st); 100 std::vector< std::tuple< cudaStream_t, cudaError_t > > waitfor_all( cudaStream_t ... st);
|
D | hip.qbk | 63 …auto result = boost::fibers::hip::waitfor_all( stream); // suspend fiber till HIP stream has finis… 86 std::tuple< hipStream_t, hipError_t > waitfor_all( hipStream_t st); 87 std::vector< std::tuple< hipStream_t, hipError_t > > waitfor_all( hipStream_t ... st); 100 std::tuple< hipStream_t, hipError_t > waitfor_all( hipStream_t st); 101 std::vector< std::tuple< hipStream_t, hipError_t > > waitfor_all( hipStream_t ... st);
|
/third_party/boost/boost/fiber/cuda/ |
D | waitfor.hpp | 118 void waitfor_all(); 121 std::tuple< cudaStream_t, cudaError_t > waitfor_all( cudaStream_t st) { in waitfor_all() function 127 std::vector< std::tuple< cudaStream_t, cudaError_t > > waitfor_all( cudaStream_t st0, STP ... stx) { in waitfor_all() function
|
/third_party/boost/boost/fiber/hip/ |
D | waitfor.hpp | 118 void waitfor_all(); 121 std::tuple< hipStream_t, hipError_t > waitfor_all( hipStream_t st) { in waitfor_all() function 127 std::vector< std::tuple< hipStream_t, hipError_t > > waitfor_all( hipStream_t st0, STP ... stx) { in waitfor_all() function
|
/third_party/boost/libs/fiber/examples/cuda/ |
D | single_stream.cu | 61 auto result = boost::fibers::cuda::waitfor_all( stream); in main()
|
D | multiple_streams.cu | 71 auto results = boost::fibers::cuda::waitfor_all( stream0, stream1); in main()
|
/third_party/boost/libs/fiber/examples/hip/ |
D | single_stream.cpp | 61 auto result = boost::fibers::hip::waitfor_all( stream); in main()
|
D | multiple_streams.cpp | 70 auto results = boost::fibers::hip::waitfor_all( stream0, stream1); in main()
|