2021-08-13 16:37:05 +00:00
|
|
|
import datetime as dt
|
2015-10-19 22:58:59 +00:00
|
|
|
import os
|
2021-08-13 16:37:05 +00:00
|
|
|
import random
|
2015-10-19 22:58:59 +00:00
|
|
|
|
|
|
|
nfns = 4 # Functions per class
|
|
|
|
nargs = 4 # Arguments per function
|
|
|
|
|
|
|
|
|
|
|
|
def generate_dummy_code_pybind11(nclasses=10):
|
|
|
|
decl = ""
|
|
|
|
bindings = ""
|
|
|
|
|
|
|
|
for cl in range(nclasses):
|
2022-02-12 00:06:16 +00:00
|
|
|
decl += f"class cl{cl:03};\n"
|
2020-10-16 20:38:13 +00:00
|
|
|
decl += "\n"
|
2015-10-19 22:58:59 +00:00
|
|
|
|
|
|
|
for cl in range(nclasses):
|
2022-02-12 00:06:16 +00:00
|
|
|
decl += f"class {cl:03} {{\n"
|
2015-10-19 22:58:59 +00:00
|
|
|
decl += "public:\n"
|
2022-02-12 00:06:16 +00:00
|
|
|
bindings += f' py::class_<cl{cl:03}>(m, "cl{cl:03}")\n'
|
2015-10-19 22:58:59 +00:00
|
|
|
for fn in range(nfns):
|
|
|
|
ret = random.randint(0, nclasses - 1)
|
2020-10-16 20:38:13 +00:00
|
|
|
params = [random.randint(0, nclasses - 1) for i in range(nargs)]
|
2022-02-12 00:06:16 +00:00
|
|
|
decl += f" cl{ret:03} *fn_{fn:03}("
|
|
|
|
decl += ", ".join(f"cl{p:03} *" for p in params)
|
2015-10-19 22:58:59 +00:00
|
|
|
decl += ");\n"
|
2022-02-12 00:06:16 +00:00
|
|
|
bindings += f' .def("fn_{fn:03}", &cl{cl:03}::fn_{fn:03})\n'
|
2015-10-19 22:58:59 +00:00
|
|
|
decl += "};\n\n"
|
2020-10-16 20:38:13 +00:00
|
|
|
bindings += " ;\n"
|
2015-10-19 22:58:59 +00:00
|
|
|
|
|
|
|
result = "#include <pybind11/pybind11.h>\n\n"
|
|
|
|
result += "namespace py = pybind11;\n\n"
|
2020-10-16 20:38:13 +00:00
|
|
|
result += decl + "\n"
|
2017-04-23 23:51:44 +00:00
|
|
|
result += "PYBIND11_MODULE(example, m) {\n"
|
2015-10-19 22:58:59 +00:00
|
|
|
result += bindings
|
|
|
|
result += "}"
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def generate_dummy_code_boost(nclasses=10):
|
|
|
|
decl = ""
|
|
|
|
bindings = ""
|
|
|
|
|
|
|
|
for cl in range(nclasses):
|
2022-02-12 00:06:16 +00:00
|
|
|
decl += f"class cl{cl:03};\n"
|
2020-10-16 20:38:13 +00:00
|
|
|
decl += "\n"
|
2015-10-19 22:58:59 +00:00
|
|
|
|
|
|
|
for cl in range(nclasses):
|
|
|
|
decl += "class cl%03i {\n" % cl
|
|
|
|
decl += "public:\n"
|
2022-02-12 00:06:16 +00:00
|
|
|
bindings += f' py::class_<cl{cl:03}>("cl{cl:03}")\n'
|
2015-10-19 22:58:59 +00:00
|
|
|
for fn in range(nfns):
|
|
|
|
ret = random.randint(0, nclasses - 1)
|
2020-10-16 20:38:13 +00:00
|
|
|
params = [random.randint(0, nclasses - 1) for i in range(nargs)]
|
2022-02-12 00:06:16 +00:00
|
|
|
decl += f" cl{ret:03} *fn_{fn:03}("
|
|
|
|
decl += ", ".join(f"cl{p:03} *" for p in params)
|
2015-10-19 22:58:59 +00:00
|
|
|
decl += ");\n"
|
2022-02-12 00:06:16 +00:00
|
|
|
bindings += f' .def("fn_{fn:03}", &cl{cl:03}::fn_{fn:03}, py::return_value_policy<py::manage_new_object>())\n'
|
2015-10-19 22:58:59 +00:00
|
|
|
decl += "};\n\n"
|
2020-10-16 20:38:13 +00:00
|
|
|
bindings += " ;\n"
|
2015-10-19 22:58:59 +00:00
|
|
|
|
|
|
|
result = "#include <boost/python.hpp>\n\n"
|
|
|
|
result += "namespace py = boost::python;\n\n"
|
2020-10-16 20:38:13 +00:00
|
|
|
result += decl + "\n"
|
2015-10-19 22:58:59 +00:00
|
|
|
result += "BOOST_PYTHON_MODULE(example) {\n"
|
|
|
|
result += bindings
|
|
|
|
result += "}"
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
for codegen in [generate_dummy_code_pybind11, generate_dummy_code_boost]:
|
2020-10-16 20:38:13 +00:00
|
|
|
print("{")
|
2023-09-06 13:04:27 +00:00
|
|
|
for i in range(10):
|
2022-02-11 02:28:08 +00:00
|
|
|
nclasses = 2**i
|
2015-10-19 22:58:59 +00:00
|
|
|
with open("test.cpp", "w") as f:
|
|
|
|
f.write(codegen(nclasses))
|
|
|
|
n1 = dt.datetime.now()
|
2020-10-16 20:38:13 +00:00
|
|
|
os.system(
|
|
|
|
"g++ -Os -shared -rdynamic -undefined dynamic_lookup "
|
2016-01-17 21:36:36 +00:00
|
|
|
"-fvisibility=hidden -std=c++14 test.cpp -I include "
|
2020-10-16 20:38:13 +00:00
|
|
|
"-I /System/Library/Frameworks/Python.framework/Headers -o test.so"
|
|
|
|
)
|
2015-10-19 22:58:59 +00:00
|
|
|
n2 = dt.datetime.now()
|
|
|
|
elapsed = (n2 - n1).total_seconds()
|
2020-10-16 20:38:13 +00:00
|
|
|
size = os.stat("test.so").st_size
|
2015-10-19 22:58:59 +00:00
|
|
|
print(" {%i, %f, %i}," % (nclasses * nfns, elapsed, size))
|
2020-10-16 20:38:13 +00:00
|
|
|
print("}")
|