MCPcopy Create free account
hub / github.com/CVCUDA/CV-CUDA / ExportOp__OPNAME__

Function ExportOp__OPNAME__

tools/mkop/PythonWrap.cpp:59–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57} // namespace
58
59void ExportOp__OPNAME__(py::module &m)
60{
61 using namespace pybind11::literals;
62
63 m.def("__OPNAMELOW__", &__OPNAME__, "src"_a, "dtype"_a, py::kw_only(), "stream"_a = nullptr, R"pbdoc(
64
65 Executes the __OPNAMESPACE__ operation on the given cuda stream.
66
67 See also:
68 Refer to the CV-CUDA C API reference for the __OPNAMESPACE__ operator
69 for more details and usage examples.
70
71 Args:
72 TBD args
73 stream (Stream, optional): CUDA Stream on which to perform the operation.
74
75 Returns:
76 TBD
77
78 Caution:
79 Restrictions to several arguments may apply. Check the C
80 API references of the CV-CUDA operator.
81 )pbdoc");
82
83 m.def("__OPNAMELOW___into", &__OPNAME__Into, "dst"_a, "src"_a, py::kw_only(), "stream"_a = nullptr, R"pbdoc(
84
85 Executes the __OPNAMESPACE__ operation on the given cuda stream.
86
87 See also:
88 Refer to the CV-CUDA C API reference for the __OPNAMESPACE__ operator
89 for more details and usage examples.
90
91 Args:
92 TBD args
93 stream (Stream, optional): CUDA Stream on which to perform the operation.
94
95 Returns:
96 TBD
97
98 Caution:
99 Restrictions to several arguments may apply. Check the C
100 API references of the CV-CUDA operator.
101 )pbdoc");
102}
103
104} // namespace cvcudapy

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected