alt.hn

4/1/2026 at 4:19:49 PM

CUDA Released in Basic

https://developer.nvidia.com/blog/cuda-tile-programming-now-available-for-basic/

by apples2apples

4/1/2026 at 4:24:09 PM

Might as well stay off the internet on April 1st.

by LouisvilleGeek

4/1/2026 at 6:20:16 PM

It's definitely an April 1st joke but it also is real?!

by djmips

4/1/2026 at 5:55:28 PM

It's all ha-ha until you realize that some versions of Dartmouth BASIC actually had matrix operation primitives, and so might've been a good choice for implementing GPU-accelerated linear algebra kernels. (It was also compiled; Microsoft basically established BASIC's reputation as a slow language by shipping an interpreter-only version for the Altair and later machines. As usual, Microsoft gonna Microsoft.)

by bitwize

4/1/2026 at 9:15:37 PM

How would people feel about CUDA programming in a simplified Fortran? That's just a step away from BASIC.

by kbelder

4/1/2026 at 11:40:47 PM

CUDA Fortran was first released in 2007 and now has multiple implementations.

by pklausler

4/1/2026 at 9:26:03 PM

Given that the go-to linear-algebra libraries for the past N decades (BLAS, Linpack, etc.) are Fortran, I'd suspect that neural-network people would be rather okay with it, esp. if it could be driven with a Python wrapper (which is how most people use BLAS and Linpack today).

BASIC is roughly to Fortran what Rust is to C++: its creators set out to design a "better Fortran", and realized that the limitations and complexities necessitated creating a whole new language.

by bitwize

4/1/2026 at 11:39:15 PM

I don't think that BASIC was ever meant to be a better Fortran. Can you substantiate that claim?

by pklausler

4/2/2026 at 5:39:51 AM

The truth is not as strong as I had claimed. BASIC's expressions kinda resemble Fortran's, probably because that was what was lying around. It seems that an easier version of an existing language is what Kurtz wanted, but Kemeny was more interested in starting from scratch, which view Kurtz came around to. From Wikipedia (https://en.wikipedia.org/wiki/Dartmouth_BASIC):

When the topic of a simple language began to be considered seriously, Kemeny immediately suggested writing a new one. Kurtz was more interested in a cut-down version of FORTRAN or ALGOL.[14] But these languages had so many idiosyncrasies that Kurtz came to agree with Kemeny:

If we had corrected FORTRAN's ugly features, we would not have FORTRAN anymore. I reluctantly had to agree with John that, yes, a new language was needed.[15]

by bitwize