cross-posted from: https://lemmy.world/post/31184706

C is one of the top languages in terms of speed, memory and energy

https://www.threads.com/@engineerscodex/post/C9_R-uhvGbv?hl=en

you are viewing a single comment's thread
view the rest of the comments
[–] 2 points 1 year ago (1 child)

Typescript and JavaScript get different results!

It does make sense, if you skim through the research paper (page 11). They aren't using performance.now() or whatever the state-of-the-art in JS currently is. Their measurements include invocation of the interpreter. And parsing TS involves bigger overhead than parsing JS.

I assume (didn't read the whole paper, honestly DGAF) they don't do that with compiled languages, because there's no way the gap between compiling C and Rust or C++ is that small.

  • source
  • parent
  • hideshow 1 child comment
  • [–] 1 point 1 year ago

    Their measurements include invocation of the interpreter. And parsing TS involves bigger overhead than parsing JS.

    But TS is compiled to JS so it's the same interpreter in both cases. If they're including the time for tsc in their benchmark then that's an even bigger WTF.

  • source
  • parent