Loading...
Searching...
No Matches
kernel_utils.h
Go to the documentation of this file.
1// BSD 3-Clause License; see https://github.com/scikit-hep/awkward/blob/main/LICENSE
2
3#ifndef AWKWARD_KERNEL_UTILS_H
4#define AWKWARD_KERNEL_UTILS_H
5
6#include <string>
7
8#include <pybind11/pybind11.h>
9
10#include "awkward/kernel-dispatch.h"
11
12namespace py = pybind11;
13namespace ak = awkward;
14
15py::enum_<ak::kernel::lib>
16 make_lib_enum(const py::handle& m, const std::string& name);
17
18
19#endif //AWKWARD_KERNEL_UTILS_H
py::enum_< ak::kernel::lib > make_lib_enum(const py::handle &m, const std::string &name)
Definition ArrayBuilder.h:14