kinther@lemmy.world to Technology@lemmy.worldEnglish · 10 months agoIntel'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 · 10 months agomessage-square54fedilink
minus-squarevext01@lemmy.sdf.orglinkfedilinkEnglisharrow-up7arrow-down1·10 months agoExactly. Also every time I’ve used async stuff, I’ve pined for proper threads. Continuation spaghetti isn’t my bag.
minus-squarekunaltyagi@programming.devlinkfedilinkEnglisharrow-up2·10 months agoWhich 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·10 months agoI’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.
Exactly.
Also every time I’ve used async stuff, I’ve pined for proper threads. Continuation spaghetti isn’t my bag.
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.