OpenCLWrappers-0.0.0: System/OpenCL/Wrappers/FlushFinish.hs
module System.OpenCL.Wrappers.FlushFinish
(clFlush
,clFinish)
where
import System.OpenCL.Wrappers.Types
import System.OpenCL.Wrappers.Utils
import System.OpenCL.Wrappers.Raw
clFlush :: CommandQueue -> IO (Maybe ErrorCode)
clFlush queue = wrapError $ raw_clFlush queue
clFinish :: CommandQueue -> IO (Maybe ErrorCode)
clFinish queue = wrapError $ raw_clFinish queue