Jakob Kasbauer

Results 13 comments of Jakob Kasbauer

Hint for `chunk_size` and `tile_size` : Choose a power of 2 value, such that the local tile / chunk fits into a cache type inside the CPU. Cache Line <...

The data type for number-of-bytes variables should be `size_t`. Quote [www.cplusplus.com/reference/cstddef/size_t/](http://www.cplusplus.com/reference/cstddef/size_t/) > It is a type able to represent the size of any object in bytes: `size_t` is the type...

If p is an integer, the compiler can unroll the loop inside pow(x, 2) to x*x. If p is a float, the compiler emits code that is valid for all...