aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWaleed El-Geresy <waleed.el-geresy@arm.com>2018-09-05 10:30:28 +0100
committerMarc Bonnici <marc.bonnici@arm.com>2018-09-05 14:40:42 +0100
commit6239f6ab2f68ffc32dc812c4f74613101b4c7995 (patch)
tree423224b91e83d7c42790caeeec6e6d206c228def /doc
parent718f2c1c902e656f7fe1f4762be9fed11efc3fe6 (diff)
Update documentation
Update documentation with new API for Output Processors which includes the context in the intialize and finalize methods.
Diffstat (limited to 'doc')
-rw-r--r--doc/source/developer_information/developer_guide/writing_plugins.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/developer_information/developer_guide/writing_plugins.rst b/doc/source/developer_information/developer_guide/writing_plugins.rst
index 6abe127c..0b684c22 100644
--- a/doc/source/developer_information/developer_guide/writing_plugins.rst
+++ b/doc/source/developer_information/developer_guide/writing_plugins.rst
@@ -343,7 +343,7 @@ see the
A list of additional :class:`Parameters` the output processor can take.
- :initialize():
+ :initialize(context):
This method will only be called once during the workload run
therefore operations that only need to be performed initially should
@@ -373,7 +373,7 @@ see the
existing data collected/generated for the run as a whole. E.g.
uploading them to a database etc.
- :finalize():
+ :finalize(context):
This method is the complement to the initialize method and will also
only be called once.