Skip to content
Snippets Groups Projects
Commit 4740e0be authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

simplify preprocesor switches to include numpy

parent 8ed2fd34
No related branches found
No related tags found
1 merge request!2188Add some code layout checks (no more than one include, using, fwd decl block)
......@@ -2,7 +2,7 @@
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/Model/Model/ParameterTreeBuilder.h
//! @file GUI/Model/Job/ParameterTreeBuilder.h
//! @brief Defines class ParameterTreeBuilder.
//!
//! @homepage http://www.bornagainproject.org
......
......@@ -24,33 +24,17 @@
#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE
#define PY_SSIZE_T_CLEAN
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#ifdef INCLUDE_NUMPY
#ifdef BORNAGAIN_PYTHON_API_SWIG
// NOTE: Using `PY_ARRAY_UNIQUE_SYMBOL` and `NO_IMPORT_ARRAY` one can use
// the Numpy Array API in multiple files for a single extension module.
#define PY_ARRAY_UNIQUE_SYMBOL BORNAGAIN_PYTHONAPI_ARRAY
#define NO_IMPORT_ARRAY
#endif // BORNAGAIN_PYTHON_API_SWIG
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION // to prevent spurious warning
#include <numpy/arrayobject.h>
#endif // INCLUDE_NUMPY
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
......
......@@ -27,15 +27,10 @@ References:
- Python's garbage collector <https://rushter.com/blog/python-garbage-collector>
*/
#define INCLUDE_NUMPY // also include Numpy via PyCore
#include "PyCore/Embed/PyCore.h"
#undef INCLUDE_NUMPY
#include "Base/Util/Assert.h"
#include "PyCore/Embed/PyInterpreter.h"
#include "Base/Util/Assert.h"
#include "PyCore/Embed/PyObjectPtr.h"
#include "PyCore/Embed/WithNumpy.h"
#include <algorithm> // transform
#include <cstddef> // NULL
#include <cstring> // memcpy
......
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file PyCore/Embed/WithNumpy.h
//! @brief Includes python header and takes care of warnings.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2023
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#ifndef BORNAGAIN_PYTHON
#error this header requires Python support
#endif
#ifdef SWIG
#error no need to expose this header to Swig
#endif
#ifndef BORNAGAIN_PYCORE_EMBED_WITHNUMPY_H
#define BORNAGAIN_PYCORE_EMBED_WITHNUMPY_H
#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE
#define PY_SSIZE_T_CLEAN
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
#include <Python.h>
#ifdef BORNAGAIN_PYTHON_API_SWIG
// NOTE: Using `PY_ARRAY_UNIQUE_SYMBOL` and `NO_IMPORT_ARRAY` one can use
// the Numpy Array API in multiple files for a single extension module.
#define PY_ARRAY_UNIQUE_SYMBOL BORNAGAIN_PYTHONAPI_ARRAY
#define NO_IMPORT_ARRAY
#endif // BORNAGAIN_PYTHON_API_SWIG
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION // to prevent spurious warning
#include <numpy/arrayobject.h>
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
#endif // BORNAGAIN_PYCORE_EMBED_WITHNUMPY_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment