Run hello-world on each CUDA device. fix a bug with returning the hello world string. add with-each-cuda-device combinator to run a program on each device. add an init-hook for cuda-init

db4
Doug Coleman 2010-04-23 14:27:19 -05:00
parent d6036b6d5b
commit 656f8987a1
3 changed files with 22 additions and 10 deletions

View File

@ -3,7 +3,7 @@
USING: accessors alien alien.data alien.parser alien.strings
alien.syntax arrays assocs byte-arrays classes.struct
combinators continuations cuda.ffi cuda.memory cuda.utils
destructors fry io io.backend io.encodings.string
destructors fry init io io.backend io.encodings.string
io.encodings.utf8 kernel lexer locals macros math math.parser
namespaces nested-comments opengl.gl.extensions parser
prettyprint quotations sequences words ;
@ -14,6 +14,10 @@ TUPLE: launcher
{ device integer initial: 0 }
{ device-flags initial: 0 } ;
: <launcher> ( device-id -- launcher )
launcher new
swap >>device ; inline
TUPLE: function-launcher
dim-block dim-grid shared-size stream ;
@ -81,3 +85,5 @@ MACRO: cuda-arguments ( c-types -- quot: ( args... function -- ) )
]
[ 2nip \ function-launcher suffix a:void function-effect ]
3bi define-declared ;
[ init-cuda ] "cuda-init" add-startup-hook

View File

@ -1,20 +1,23 @@
! Copyright (C) 2010 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.strings cuda cuda.memory cuda.syntax
destructors io io.encodings.utf8 kernel locals math sequences ;
USING: accessors alien.c-types alien.strings cuda cuda.devices
cuda.memory cuda.syntax cuda.utils destructors io
io.encodings.string io.encodings.utf8 kernel locals math
math.parser namespaces sequences ;
IN: cuda.demos.hello-world
CUDA-LIBRARY: hello vocab:cuda/demos/hello-world/hello.ptx
CUDA-FUNCTION: helloWorld ( char* string-ptr ) ;
:: cuda-hello-world ( -- )
T{ launcher { device 0 } } [
"Hello World!" [ - ] map-index host>device &dispose :> str
: cuda-hello-world ( -- )
[
cuda-launcher get device>> number>string
"CUDA device " ": " surround write
"Hello World!" [ - ] map-index host>device
str { 6 1 1 } { 2 1 } 2<<< helloWorld
str device>host utf8 alien>string print
] with-cuda ;
[ { 6 1 1 } { 2 1 } 2<<< helloWorld ]
[ device>host utf8 decode print ] bi
] with-each-cuda-device ;
MAIN: cuda-hello-world

View File

@ -141,3 +141,6 @@ ERROR: no-cuda-library name ;
: function-shared-size ( n -- )
[ cuda-function get ] dip
cuFuncSetSharedSize cuda-error ;
: with-each-cuda-device ( quot -- )
[ enumerate-cuda-devices ] dip '[ <launcher> _ with-cuda ] each ; inline