Kim, Kyunghun

Results 10 comments of Kim, Kyunghun

So sad, it is only mail client in Ubuntu that provides me user experience like in Mac. Does anyone know alternative of this project? Or, I'd better just keep using...

I didn't test the code yet, but you have to copy `Array` to `CudaArray` to use in GPU. Use `CudaArray` like this before calling the kernel: ``` d_q = CudaArray(q)...

In launching cuda kernel, ``` CUDArt.launch(juliafn, length(d_q), 1, (d_q, out, uint16(maxiter))) ``` You have to specify proper block size rather than 1. ex) 256, 512, 1024, ... It may be...

+1 here, needed to disable when playing WoW to assign key bindings to mouse 4/5 buttons

Hi all, I'm a student applying JSOC 2014. I'm digging up some GPU issues. This issue seem to be same problem with next issue, https://github.com/lindahua/CUDA.jl/issues/2 CUFFT also need context with...

I tested that both this issue and https://github.com/lindahua/CUDA.jl/issues/2 works well with new patch. Changing functions to _v2 version was enough, not the problem between CUDA driver and runtime APIs. And...

Thanks for long comment. To be clearly, I intended to say "Which library is better to use with julia, CUDA driver or runtime API?", not to compare two julia to...

Hi, I'm back to this issue! Congratulation to launch of brand new JuliaGPU! :fireworks: :fireworks: :fireworks: The issue is becoming serious concern of future of JuliaGPU :smiley: I'm a poor...

In case of stack allocation and memory address is not aligned, is there any potential memory corruption when this assertion is ignored? (well, it's true if there is any issue...

Kindly ping this issue. Can we confirm small_vector is doing safe memory access without this assertion? Otherwise do we need different approach for `small_vector_allocator` in 32bit systems?