You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rough timing tests (on my sluggish VM):
ALEAgentHost.sendCommand takes roughly 10-15ms.
Of that:
ALEInterface::act is taking about 0.3ms
The frame scaling/copying is taking (on average) around 0.3ms
The remaining 95% of the time appears to be spent in the reward code - largely, I suspect, in serialising/deserialising the reward XML message.
Needless to say, it should be possible to speed this up.
The text was updated successfully, but these errors were encountered:
This constructor is the culprit: TimestampedReward::TimestampedReward(boost::posix_time::ptime timestamp,std::string xml_string)
It is taking around 10ms.
Rough timing tests (on my sluggish VM):
ALEAgentHost.sendCommand takes roughly 10-15ms.
Of that:
ALEInterface::act is taking about 0.3ms
The frame scaling/copying is taking (on average) around 0.3ms
The remaining 95% of the time appears to be spent in the reward code - largely, I suspect, in serialising/deserialising the reward XML message.
Needless to say, it should be possible to speed this up.
The text was updated successfully, but these errors were encountered: