Arthur Besse@lemmy.ml to Programmer Humor@lemmy.ml · 1 年前it's how the basic linear algebra subprograms are implementedlemmy.mlexternal-linkmessage-square27linkfedilinkarrow-up1426arrow-down15file-text
arrow-up1421arrow-down1external-linkit's how the basic linear algebra subprograms are implementedlemmy.mlArthur Besse@lemmy.ml to Programmer Humor@lemmy.ml · 1 年前message-square27linkfedilinkfile-text
References: https://en.wikipedia.org/wiki/OpenBLAS http://modernhumorist.com/mh/0004/propaganda/mp3.php https://knowyourmeme.com/memes/when-you-ride-alone-you-ride-with-hitler https://everything2.com/title/When+you+pirate+MP3s%252C+you%2527re+downloading+communism
minus-squareBartyDeCanter@lemmy.sdf.orglinkfedilinkarrow-up35·1 年前Array operations in FORTRAN are much easier for the compiler heavily optimize than it is in c/c++ due to its array model and type system. You can achieve much of the same thing with modern compiler extensions, but it’s difficult and not as portable.
Array operations in FORTRAN are much easier for the compiler heavily optimize than it is in c/c++ due to its array model and type system. You can achieve much of the same thing with modern compiler extensions, but it’s difficult and not as portable.
That’s interesting, thanks