summaryrefslogtreecommitdiffstats
path: root/c2python
Commit message (Collapse)AuthorAge
* Add module for C 2 Python interactionAndrea Bastoni2010-04-12
The following are implemented: static PyMethodDef PmMethods[] = { {"load", pm_load, METH_VARARGS, "Load data from raw files"}, {"getPreemption", pm_get_preemption, METH_VARARGS, "Get preemption overheads - length"}, {"getL2Migration", pm_get_samel2, METH_VARARGS, "Get L2 Migration overheads - length"}, {"getOnChipMigration", pm_get_samechip, METH_VARARGS, "Get Chip (L2 or L3) overheads - length"}, {"getOffChipMigration", pm_get_offchip, METH_VARARGS, "Get Off Chip overheads - length"}, {NULL, NULL, 0, NULL} };