Skip to content

Commit 403d594

Browse files
committed
Use several optimization flags in cython.001
1 parent 079a26c commit 403d594

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

cython.001.fopen/gc.pyx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# cython: boundscheck=False, wraparound=False, initializedcheck=False, cdivision=True
2+
13
from libc.stdio cimport fopen, fgets, fclose, FILE
24
from libc.stdint cimport uint64_t
35

@@ -11,10 +13,6 @@ value[ord('G')] = value[ord('C')] = 1ull << 32;
1113

1214

1315
cpdef void main():
14-
15-
16-
17-
1816
cdef FILE* f
1917
cdef double at
2018
cdef double gc

0 commit comments

Comments
 (0)