2015-01-12 13:20:53 -05:00
|
|
|
// Copyright Jim Bosch 2010-2012.
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
#define BOOST_NUMPY_INTERNAL_MAIN
|
|
|
|
#include <boost/numpy/internal.hpp>
|
|
|
|
#include <boost/numpy/dtype.hpp>
|
|
|
|
|
|
|
|
namespace boost
|
|
|
|
{
|
|
|
|
namespace numpy
|
|
|
|
{
|
|
|
|
|
2015-08-14 22:09:54 -07:00
|
|
|
#if PY_MAJOR_VERSION == 2
|
|
|
|
static void wrap_import_array() {
|
|
|
|
import_array();
|
|
|
|
}
|
2015-01-12 13:20:53 -05:00
|
|
|
#else
|
2015-08-14 22:09:54 -07:00
|
|
|
static void * wrap_import_array() {
|
|
|
|
import_array();
|
2015-08-07 01:00:52 -07:00
|
|
|
}
|
2015-08-14 22:09:54 -07:00
|
|
|
#endif
|
2015-01-12 13:20:53 -05:00
|
|
|
|
|
|
|
void initialize(bool register_scalar_converters)
|
|
|
|
{
|
2015-08-14 22:09:54 -07:00
|
|
|
wrap_import_array();
|
2015-01-12 13:20:53 -05:00
|
|
|
import_ufunc();
|
|
|
|
if (register_scalar_converters)
|
|
|
|
dtype::register_scalar_converters();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|