Hacker News new | ask | show | jobs
by mountainriver 376 days ago
Those design decisions by Go are what caused the need to trampoline to C right? How does nature fix that? Does it work well with GPUs?
1 comments

Calling C code can solve most performance and ecosystem issues. Nature natively implements the system ABI for various operating systems and CPU architectures, enabling C code libraries to be called at extremely low cost. In Go, a separate thread + hook is required to call C functions.

I have not yet considered GPU-related features.