Copyright | [2009..2017] Trevor L. McDonell |
---|---|
License | BSD |
Safe Haskell | None |
Language | Haskell98 |
Primary context management for low-level driver interface. The primary context is unique per device and shared with the Runtime API. This allows integration with other libraries using CUDA.
Since: CUDA-7.0
Documentation
status :: Device -> IO (Bool, [ContextFlag]) Source #
Get the status of the primary context. Returns whether the current context is active, and the flags it was (or will be) created with.
Requires CUDA-7.0.
setup :: Device -> [ContextFlag] -> IO () Source #
Specify the flags that the primary context should be created with. Note that this is an error if the primary context is already active.
Requires CUDA-7.0.
reset :: Device -> IO () Source #
Destroy all allocations and reset all state on the primary context of the given device in the current process. Requires cuda-7.0
Requires CUDA-7.0.
release :: Device -> IO () Source #
Release the primary context on the given device. If there are no more references to the primary context it will be destroyed, regardless of how many threads it is current to.
Unlike pop
this does not pop the
context from the stack in any circumstances.
Requires CUDA-7.0.