Resource Allocation in Artery #293
-
I need to implement a computational resource allocation algorithm for my master's thesis. I've seen some work using Veins, but I need to use a V2X environment, so I chose Artery. Is there any work or any tips for me to be able to implement what I need? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, I'm not aware of any works regarding allocation of computational resources for Artery. AFAIK, Veins and also Artery do not model computation time and memory consumption of software, running on each vehicle instance. They just assume that memory resources are sufficient and calculations can be completed. Usually, all computations, e.g. execution of a modules functions, are performed for an event and have no duration in the simulation world. If you want to model computational resources for service, a good starting point would be the middleware since it is responsible for running services on each equipped vehicle. Best regards |
Beta Was this translation helpful? Give feedback.
Hi,
I'm not aware of any works regarding allocation of computational resources for Artery. AFAIK, Veins and also Artery do not model computation time and memory consumption of software, running on each vehicle instance. They just assume that memory resources are sufficient and calculations can be completed. Usually, all computations, e.g. execution of a modules functions, are performed for an event and have no duration in the simulation world.
If you want to model computational resources for service, a good starting point would be the middleware since it is responsible for running services on each equipped vehicle.
Best regards
Alex