2014年2月13日 星期四

Hint GCC on branch prediction

Declare and use the macros:
#ifdef __GNUC__
#define LIKELY(x) __builtin_expect(!!(x), 1)
#define UNLIKELY(x) __builtin_expect(!!(x), 0)
#else
#define LIKELY(x) (x)
#define UNLIKELY(x) (x)
#endif
if (UNLIKELY(x != OK))
{
/* ... */
}

2014年2月12日 星期三

A simple thread pool in Python

Implement a simple thread pool in a couple of lines.


from multiprocessing import Pool
from multiprocessing.dummy import Pool as ThreadPool
def f(x):
print("Test {}".format(str(x)))
pool = ThreadPool()
# pool = Pool() for process pool
pool.map(f, range(100))
pool.close()
pool.join()