[julia-users] Julia_CUDA

2014-05-13 Thread Deepraj Paul
I am interested in utilizing Cuda-Julia for my upcoming work. For a simple case, there are 50 decoupled instances which I want to execute in parallel. The Data generated in each instances are to written in different files. How to take care of such problem? I donot have any prior experience of Pa

Re: [julia-users] Julia_CUDA

2015-02-03 Thread cdm
i have not seen this link: http://blog.maleadt.net/2015/01/15/julia-cuda/ yet on this list ... apologies if i missed it. late, cdm

Re: [julia-users] Julia_CUDA

2015-02-03 Thread cdm
and this link: https://groups.google.com/forum/#!searchin/julia-dev/julia-cuda|sort:relevance/julia-dev/doQUqQabC8A/mbDe8DSd2ykJ over on julia-dev may also be of interest. On Tuesday, February 3, 2015 at 4:54:07 PM UTC-8, cdm wrote: > > > i have not seen this link: > >http://blog.ma

Re: [julia-users] Julia_CUDA

2014-05-13 Thread Tim Holy
If you have a machine with 50 CPUs, you could just fire up 50 copies of Julia and assign each the task of tackling one. If you want to use CUDA, you can do something similar in principle, but the task of splitting the computations is much more involved. Julia's CUDA support is still relatively y