(Please don't lob rocks at me. I love Python.)

Book cover: "Articifical Intelligence in BASIC" by Mike James
you are viewing a single comment's thread
view the rest of the comments
[–] 96 points 1 year ago (11 children)

A lot of it is c in a python raincoat

  • source
  • parent
  • hideshow 11 child comments
  • [–] 19 points 1 year ago (3 children)

    Which can be ASM in a C raincoat

  • source
  • parent
  • hideshow 3 child comments
  • [–] 23 points 1 year ago (2 children)

    Which can be ASMR depending on pronunciation and tone of voice.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 15 points 1 year ago (6 children)

    The underlining linear algebra routines are written in… FORTRAN.

  • source
  • parent
  • hideshow 6 child comments
  • [–] 5 points 1 year ago (4 children)

    I've never played with FORTRAN, but I've done some linear algebra with matlab. Matlab was interesting for the native handling if matrices. What makes FORTRAN so good at linear algebra?

  • source
  • parent
  • hideshow 4 child comments
  • [–] 11 points 1 year ago (2 children)

    the main thing that makes fortran preferable to C is the way it handles arrays and vectors. due to different pointer semantics, they can be laid out more efficiently in memory, meaning less operations need to be done for a given calculation.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 1 year ago* (1 child)

    Interesting. Is this a fundamental limitation of C or is it just more preferable and easier to use FORTRAN when implementing it?

    Meaning could the same performance be achieved in C but most optimized libraries are already written so why bother? Or basically C can't achieve the memory optimization at all?

  • source
  • parent
  • hideshow 1 child comment
  • [–] 8 points 1 year ago*

    you can get the same performance by using the restrict keyword in C.

    basically, C allows pointer aliasing while fortran does not, which means C programs need to be able to handle cases when a value is accessed from multiple locations. fortran does not, so a lot of accesses can be optimized into immediates, or unrolled without guards.

    restrict is a pinky-promise to the compiler that no overlapping takes place, e.g. that a value will only be accessed from one place. it's basically rust ownership semantics without enforcement.

  • source
  • parent
  • [–] 7 points 1 year ago

    Matlab's syntax for matrices actually derives from Fortran. There's a lot of flexibility in Fortran's array features for

    • multidimensional arrays
    • arrays of indeterminate and flexible length
    • vectorized operations on arrays without explicitly writing loops.

    Because Fortran does not have a pointer in the sense of C, the Fortran compiler is free to make several optimization that a C compiler can't. Compiled Fortran is often faster than C code that does the same thing.

  • source
  • parent