Skip to content

ActionsRenderingEngine response time #11

Answered by pattacini
kt10aan asked this question in Q&A
Discussion options

You must be logged in to vote

For testing, I've gone through the following steps:

  • ARE is hacked at this code line, by replacing
if(!motorThr->point(command))
{
    reply.addVocab(NACK);
    break;
}

with

double t0=Time::now();
if(!motorThr->point(command))
{
    reply.addVocab(NACK);
    break;
}
double t1=Time::now();
yDebug("---------- point = %g [s]",t1-t0);
  • ARE is launched with this context.
  • To simplify the test, I queried ARE 10 times in a row with the command point (-0.35 0.0 -0.1) left sent to /ARE/cmd:io port, getting the timing reported hereafter:
trial duration [s]
1 3.90264
2 4.39814
3 4.57924
4 4.03877
5 4.08696
6 4.10628
7 3.93541
8 4.24572
9 3.9722
10 4.12604

They seem to …

Replies: 7 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by pattacini
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #11 on December 15, 2020 15:25.