Skip to content

Instantly share code, notes, and snippets.

@ctku
ctku / demo.py
Created August 1, 2012 21:44 — forked from bwhite/demo.py
Integrating Python + C: Ctypes and Cython
import ctypes
import time
import numpy as np
import example_cython
def mult_sum(a):
b = 0
for i in range(10000):
b += a * i