Skip to content

Instantly share code, notes, and snippets.

View User-DK's full-sized avatar
🎯
Focusing

Daivik Karbhari User-DK

🎯
Focusing
View GitHub Profile
@User-DK
User-DK / GSoC2024_Final_Work_Report.md
Last active August 30, 2024 17:55
Google Summer of Code 2024: Final Work Report

Daivik GSoC'24 Final Report

Seldon-Code: Python Bindings for Seldon

Final Report


  • Organisation: Python Software Foundation, Seldon-Code
  • Mentors: Amrita Goswami, Rohit Goswami, Moritz Sallermann
  • Project length: 350 hours
  • Difficulty level: Hard

template <typename AgentT>
void generate_bindings(py::module_ &m, std::string name)
{
std::string ClassName;
if(name == "Int"){
ClassName = "SimulationI"
}
else if(name == "Double"){
ClassName = "SimulationD"
}