39 #include "config/have_protobuf.hh" 40 #include "debug/TrafficGen.hh" 41 #include "params/PyTrafficGen.hh" 44 namespace py = pybind11;
58 std::shared_ptr<BaseGen>
62 return std::shared_ptr<BaseGen>();
66 return std::shared_ptr<BaseGen>();
71 std::shared_ptr<BaseGen> gen =
75 }
catch (py::cast_error&) {
76 fatal(
"Meta generator didn't return a valid trace generator\n");
85 py::module
m = m_native.def_submodule(
"trace");
87 py::class_<BaseGen, std::shared_ptr<BaseGen>> c_base(m,
"BaseGen");
93 PyTrafficGenParams::create()
pybind11::iterator metaGenerator
#define fatal(...)
This implements a cprintf based fatal() function.
The traffic generator is a master module that generates stimuli for the memory system, based on a collection of simple behaviours that are either probabilistic or based on traces.
static EmbeddedPyBind _py_tracers("trace", pybind_init_tracers)
std::shared_ptr< BaseGen > nextGenerator() override
void pybind_init_tracers(py::module &m_native)
The traffic generator is a master module that generates stimuli for the memory system, based on a collection of simple generator behaviours that are either probabilistic or based on traces.
PyTrafficGen(const PyTrafficGenParams *p)