Live data from Hacker News

Futhark – A small programming language that compiles to efficient GPU code

futhark-lang.org

11–16 of 16 posts

Re: Futhark – A small programming language that compiles to efficient GPU code

#11
Woudln't the more accurate example of APL on the GPU be co-dfns?

Is there a way to make J target the GPU? I feel like APL stuff is more limiting because it invariably results in paying Dyalog for a toolkit (which severely limits my ability to use it at work).

Re: Futhark – A small programming language that compiles to efficient GPU code

#12
post #4
post #3

Looks very interesting :) but I can't quite find out what is going on on the GPU. What GPU operations are executed for a sample program which contains various (scalar, vector, applying to different sizes and shapes etc.) operators?

Any array combinator (most importantly map, scan, reduce, and filter) are executed on the GPU (or whatever parallel execution platform is used).

What is the minimum OpenCL version? I'm evaluatimg if this could be a viable experimentation for parallelizing task which uses amazon GPU compute which are mostly nvidia GPU.

Re: Futhark – A small programming language that compiles to efficient GPU code

#13
post #4

Earlier quoted context omitted.

Any array combinator (most importantly map, scan, reduce, and filter) are executed on the GPU (or whatever parallel execution platform is used).

What is the minimum OpenCL version? I'm evaluatimg if this could be a viable experimentation for parallelizing task which uses amazon GPU compute which are mostly nvidia GPU.

Somewhere around OpenCL 1.1 and 1.2. It works fine on NVIDIA GPUs - they are our main test platform.

Re: Futhark – A small programming language that compiles to efficient GPU code

#14
post #6

This is not APL. Please don't call it APL. Also, please change the title on this thread to have it reflect the same.

Or may link to the "Docs" section? It mentions a paper that connects this to APL: "APL on GPUs - A TAIL from the Past, Scribbled in Futhark A paper describing an APL compiler (apltail) that operates by translating APL into a typed array intermediate language (TAIL), and from there into Futhark. While the Futhark details are light, the paper demonstrates a simple use of Futhark as a target language for a compiler. We…

No, sorry, I studied APL in the early 80's and used it professionally for ten years straight and have been using it sporadically since then.

Only APL is APL. Notation is as much a part of APL as is it's linear algebra/array orientation. One can't remove the notation and call it APL just like one can't take C and convert it to icons to drag around the screen and still call it C.

Re: Futhark – A small programming language that compiles to efficient GPU code

#15

Really what does this have to do with APL ( Ken Iverson )?? * This is NOT APL. Futhark is a functional language, we will start with the obligatory factorial program: fun fact (n: i32): i32 = reduce ( ) 1 (map (1+) (iota n)) This has nothing to do with APL. Perhaps a more apt title would be "Python for the GPU".j * There is a paper on this subject, where an APL interpreter is written in FUTARK, but then most compilers…

Thanks, a moderator updated the submission title to clarify.

(Submitted title was "Futhark: APL on the GPU".)

Post reply on HN