Commit 0e579823 authored by Mark Florisson's avatar Mark Florisson

Lower buffer_max_dims to 8

parent 4b9a1ff7
...@@ -67,9 +67,9 @@ old_style_globals = False ...@@ -67,9 +67,9 @@ old_style_globals = False
cimport_from_pyx = False cimport_from_pyx = False
# max # of dims for buffers -- set to same value as max # of dims for numpy # max # of dims for buffers -- set lower than number of dimensions in numpy, as
# arrays. # slices are passed by value and involve a lot of copying
buffer_max_dims = 32 buffer_max_dims = 8
# Declare compiler directives # Declare compiler directives
directive_defaults = { directive_defaults = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment