kinther@lemmy.world to Technology@lemmy.worldEnglish · 2年前Intel's Meteor Lake CPUs are slower at single-core work than previous-gen models — new benchmarks show IPC regressions vs Raptor Lakewww.tomshardware.comexternal-linkmessage-square54fedilinkarrow-up1361arrow-down16
arrow-up1355arrow-down1external-linkIntel's Meteor Lake CPUs are slower at single-core work than previous-gen models — new benchmarks show IPC regressions vs Raptor Lakewww.tomshardware.comkinther@lemmy.world to Technology@lemmy.worldEnglish · 2年前message-square54fedilink
minus-squarekunaltyagi@programming.devlinkfedilinkEnglisharrow-up2·2年前Which language? Usually there’s a thread pool where multiple tasks are run in parallel. CPython is a special case due to gil, but we have pypy which has actual parallelism
minus-squarevext01@lemmy.sdf.orglinkfedilinkEnglisharrow-up1·2年前I’ve only ever used it in those lua microcontrollers and in Rust with the async keyword. In lua I doubt they use proper threading due to the GIL. Rust probably can do async with threads, but it just wasn’t fun to work with.
Which language? Usually there’s a thread pool where multiple tasks are run in parallel. CPython is a special case due to gil, but we have pypy which has actual parallelism
I’ve only ever used it in those lua microcontrollers and in Rust with the async keyword.
In lua I doubt they use proper threading due to the GIL. Rust probably can do async with threads, but it just wasn’t fun to work with.