gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Classes | Namespaces | Macros
pybind_init.hh File Reference
#include <Python.h>
#include "pybind11/pybind11.h"

Go to the source code of this file.

Classes

struct  gem5::PybindModuleInit
 

Namespaces

namespace  gem5
 Copyright (c) 2024 Arm Limited All rights reserved.
 

Macros

#define GEM5_PYBIND_MODULE_INIT(name, func)
 

Macro Definition Documentation

◆ GEM5_PYBIND_MODULE_INIT

#define GEM5_PYBIND_MODULE_INIT (   name,
  func 
)
Value:
namespace { \
\
::PyObject * \
initializer() \
{ \
static ::pybind11::module_::module_def mod_def; \
static auto m = ::pybind11::module_::create_extension_module( \
#name, nullptr, &mod_def); \
func(m); \
m.inc_ref(); \
return m.ptr(); \
} \
\
::gem5::PybindModuleInit modInit(#name, initializer); \
\
}
const std::string & name()
Definition trace.cc:48

Definition at line 56 of file pybind_init.hh.


Generated on Mon Jan 13 2025 04:28:46 for gem5 by doxygen 1.9.8