mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
18 lines
574 B
C
18 lines
574 B
C
/*
|
|
* This file is part of the OpenMV project.
|
|
* Copyright (c) 2013-2016 Kwabena W. Agyeman <kwagyeman@openmv.io>
|
|
* This work is licensed under the MIT license, see the file LICENSE for details.
|
|
*
|
|
* Ulab config file.
|
|
*
|
|
*/
|
|
#ifndef __ULAB_CONFIG_H__
|
|
#define __ULAB_CONFIG_H__
|
|
// Override ulab defaults here.
|
|
#define ULAB_MAX_DIMS (4)
|
|
#define ULAB_SUPPORTS_COMPLEX (0)
|
|
#define ULAB_SCIPY_HAS_OPTIMIZE_MODULE (0)
|
|
#define ULAB_SCIPY_HAS_SPECIAL_MODULE (0)
|
|
#define ULAB_FFT_IS_NUMPY_COMPATIBLE (0)
|
|
#endif //__ULAB_CONFIG_H__
|