Josh Ring
Josh Ring
It has been a while since Python 3.6, so I was wondering, can this be used without a patched python? Also I was wondering what the project's status was. >...
The benchmark is a FIB sequence, **duplicating** this work over many cores even with 100% efficiency will **never** yield any speedup. Work **division** is needed to see a speedup, I...
Given a trivial code example: ```python def some_fn(): for i in range(100): result += x * i return result ``` unrolled in batches of say 10 iterations: ```python def some_fn():...
**Inspired by the article:** https://journal.stuffwithstuff.com/2015/02/01/what-color-is-your-function/ > But if you have threads (green- or OS-level), you don’t need to do that. You can just suspend the entire thread and hop straight...
This is an error, but it's hard to understand how to fix. ```c macro @example(t_slice) { var $type = $typeof(t_slice); } ``` > Error: A type must be followed by...
```bash c3c init example ``` Does not add `test/**` to "sources" in project.json By default, running `c3c test` does not work for tests unless the test is inside of `src/**`,...
This gives an error from the comments on the struct members ```c /** * Data structure to hold a quaternion. */ struct Quaternion { double w; /**< Scalar part */...