2015-07-26 14:33:49 +00:00
|
|
|
/*
|
2016-08-12 11:50:00 +00:00
|
|
|
tests/test_numpy_vectorize.cpp -- auto-vectorize functions over NumPy array
|
2015-07-29 15:51:54 +00:00
|
|
|
arguments
|
2015-07-26 14:33:49 +00:00
|
|
|
|
2016-04-17 18:21:41 +00:00
|
|
|
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
|
2015-07-26 14:33:49 +00:00
|
|
|
|
|
|
|
All rights reserved. Use of this source code is governed by a
|
|
|
|
BSD-style license that can be found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2016-08-12 11:50:00 +00:00
|
|
|
#include "pybind11_tests.h"
|
2015-10-15 16:13:33 +00:00
|
|
|
#include <pybind11/numpy.h>
|
2015-07-26 14:33:49 +00:00
|
|
|
|
|
|
|
double my_func(int x, float y, double z) {
|
2016-09-06 22:50:10 +00:00
|
|
|
py::print("my_func(x:int={}, y:float={:.0f}, z:float={:.0f})"_s.format(x, y, z));
|
2016-05-28 10:26:18 +00:00
|
|
|
return (float) x*y*z;
|
2015-07-26 14:33:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-28 14:12:20 +00:00
|
|
|
std::complex<double> my_func3(std::complex<double> c) {
|
|
|
|
return c * std::complex<double>(2.f);
|
|
|
|
}
|
|
|
|
|
2016-09-03 18:54:22 +00:00
|
|
|
test_initializer numpy_vectorize([](py::module &m) {
|
2015-07-29 15:51:54 +00:00
|
|
|
// Vectorize all arguments of a function (though non-vector arguments are also allowed)
|
2015-07-26 14:33:49 +00:00
|
|
|
m.def("vectorized_func", py::vectorize(my_func));
|
2015-07-29 15:51:54 +00:00
|
|
|
|
2015-07-26 14:33:49 +00:00
|
|
|
// Vectorize a lambda function with a capture object (e.g. to exclude some arguments from the vectorization)
|
|
|
|
m.def("vectorized_func2",
|
2015-10-13 15:38:22 +00:00
|
|
|
[](py::array_t<int> x, py::array_t<float> y, float z) {
|
2015-07-26 14:33:49 +00:00
|
|
|
return py::vectorize([z](int x, float y) { return my_func(x, y, z); })(x, y);
|
|
|
|
}
|
|
|
|
);
|
2015-07-29 15:51:54 +00:00
|
|
|
|
|
|
|
// Vectorize a complex-valued function
|
2015-07-28 14:12:20 +00:00
|
|
|
m.def("vectorized_func3", py::vectorize(my_func3));
|
2016-05-19 14:02:09 +00:00
|
|
|
|
|
|
|
/// Numpy function which only accepts specific data types
|
2016-08-12 20:28:31 +00:00
|
|
|
m.def("selective_func", [](py::array_t<int, py::array::c_style>) { return "Int branch taken."; });
|
|
|
|
m.def("selective_func", [](py::array_t<float, py::array::c_style>) { return "Float branch taken."; });
|
|
|
|
m.def("selective_func", [](py::array_t<std::complex<float>, py::array::c_style>) { return "Complex float branch taken."; });
|
2016-09-03 18:54:22 +00:00
|
|
|
});
|