factor/extra/cuda/contexts/contexts.factor

35 lines
1.1 KiB
Factor
Raw Normal View History

! Copyright (C) 2010 Joe Groff.
! See http://factorcode.org/license.txt for BSD license.
2010-05-20 17:32:35 -04:00
USING: alien.c-types alien.data continuations cuda cuda.ffi
cuda.libraries alien.destructors fry kernel namespaces ;
2010-05-20 17:32:35 -04:00
IN: cuda.contexts
: set-up-cuda-context ( -- )
H{ } clone cuda-modules set-global
H{ } clone cuda-functions set-global ; inline
2010-05-20 17:32:35 -04:00
: create-context ( device flags -- context )
swap
[ { CUcontext } ] 2dip
'[ _ _ cuCtxCreate cuda-error ] with-out-parameters ; inline
2010-05-20 17:32:35 -04:00
: sync-context ( -- )
cuCtxSynchronize cuda-error ; inline
: context-device ( -- n )
{ CUdevice } [ cuCtxGetDevice cuda-error ] with-out-parameters ; inline
2010-05-20 17:32:35 -04:00
: destroy-context ( context -- ) cuCtxDestroy cuda-error ; inline
: clean-up-context ( context -- )
[ sync-context ] ignore-errors destroy-context ; inline
DESTRUCTOR: destroy-context
DESTRUCTOR: clean-up-context
2010-05-20 17:32:35 -04:00
: (with-cuda-context) ( context quot -- )
swap '[ _ clean-up-context ] [ ] cleanup ; inline
2010-05-20 17:32:35 -04:00
: with-cuda-context ( device flags quot -- )
[ set-up-cuda-context create-context ] dip (with-cuda-context) ; inline