2015-12-18から1日間の記事一覧

Cython 文法メモ

# ライブラリのインポート from libc.math cimport sin from libc.string cimport strcmp from libc.stdio cimport fopen,fclose,fgets,fseek,ftell,fwrite # 関数宣言 def main(): #変数宣言 cdef int a=1 cdef char* s = "Hello マリオさん。こんにちは" c…

CythonとPythonとの処理時間の比較

Pythonを高速化するCythonを使ってみた - Kesin's diary ここに書いてあることがおもしろそうだったのでやってみた. 1~100000000まで足しこむプログラム. 環境はmacで。 C #include <stdio.h> int main(){ int i,n=0; for(i=0;i<100000000;i++) n+=i; } オプションで</stdio.h>…