as suggested by @longjon
https://github.com/BVLC/caffe/issues/44#issuecomment-32832810
This commit is contained in:
Evan Shelhamer 2014-01-23 09:10:44 -08:00
Родитель 89a0e8ebb2
Коммит 73c10a1ae1
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -10,9 +10,11 @@
#include <numpy/arrayobject.h>
#include "caffe/caffe.hpp"
// Temporary solution for numpy < 1.7 versions: old macro.
// Temporary solution for numpy < 1.7 versions: old macro, no promises.
// You're strongly advised to upgrade to >= 1.7.
#ifndef NPY_ARRAY_C_CONTIGUOUS
#define NPY_ARRAY_C_CONTIGUOUS NPY_C_CONTIGUOUS
#define PyArray_SetBaseObject(arr, x) (PyArray_BASE(arr) = (x))
#endif