A JSON file to describe a workload with several 10% loading small tasks.
Signed-off-by: Pi-Cheng Chen pi-cheng.chen@linaro.org --- doc/examples/example6.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 doc/examples/example6.json
diff --git a/doc/examples/example6.json b/doc/examples/example6.json new file mode 100644 index 0000000..97ff02e --- /dev/null +++ b/doc/examples/example6.json @@ -0,0 +1,14 @@ +{ + /* + * Simple use case which creates 10% load small tasks that run + * until the use case is stopped with Ctrl+C + */ + "tasks" : { + "thread0" : { + "instance" : 4, + "loop" : -1, + "run" : 1000, + "timer" : { "ref" : "tick", "period" : 10000 } + } + } +}