Skip to content

Instantly share code, notes, and snippets.

View WizzyGeek's full-sized avatar
🚤
I am. Speed!

WizzyGeek

🚤
I am. Speed!
  • localhost:2004
View GitHub Profile
@zed
zed / csum_block.c
Last active October 3, 2020 08:11
Fastest way to sum integers in a file. Python `ctypes` multithreaded version.
/** To make shared library, run:
$ gcc -shared -O3 -o libcsum_block.so -fPIC csum_block.c
Algorithm from:
http://stackoverflow.com/questions/25606833/fastest-way-to-sum-integers-in-text-file/25607155#comment40046670_25607155
*/
#include <stdint.h>