SampleApplication: Change the unit of result

Correct the unit of sample-application result, which should be us(microseconds).

Tracked-On #7820
Signed-off-by: Zhang Wei <wei6.zhang@linux.intel.com>
This commit is contained in:
weizhang 2022-08-05 09:24:14 +08:00 committed by acrnsi-robot
parent 2a8b80d0c1
commit ddefbfa6b9
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def create_hist():
figure = plt.hist(dataset)
plt.title("Latency percentages")
plt.xlabel("Latency Value (ms)")
plt.xlabel("Latency Value (us)")
plt.ylabel("Frequency")
plt.savefig("hist.png")