uncomplicate

qqq 2017-03-30T02:48:44.990132Z

@blueberry: in cases where my matrices represent images; is there any recomended toolkit to use for visualization ? (i.e. something like ipython with uncomplicate as the computing kernel)

2017-03-30T08:28:03.046971Z

@qqq you can use whatever you like: gorilla repl (clojure), gnuplot, processing, quil (clojure) really...

2017-03-30T20:36:59.154798Z

Neanderthal 0.9.0 is in Clojars with many improvements http://neanderthal.uncomplicate.org

👍 1
qqq 2017-03-30T23:00:20.812947Z

@blueberry : in GLSL, there's a notion of a fragment/vertex shader; where I write a program, upload it to the GPU, and the GPU executes the program without talking ot the CPU again (except for uploading textures / buffers) in OpenCL, is there something similar? where instead of this "command queue batch", we: 1) upload some program, which is a bunch of ops 2) we upload the data 3) the GPU then runs without really talking to the CPU again

2017-03-30T23:21:30.982935Z

that's how it works

qqq 2017-03-30T23:24:20.004090Z

I'm sorry, I'm confused.

qqq 2017-03-30T23:24:40.006721Z

Underthehood, is neandertheral converting my "batched OpenCL operations" into a program, compiling it, and uploading it ot the GPU ?