Updated docsrings and regen docs

This commit is contained in:
Alejandro Saucedo 2020-08-29 16:09:41 +01:00
parent b9d210185b
commit b80548ac3d
3 changed files with 11 additions and 0 deletions

View file

@ -67,6 +67,7 @@ class Manager
*
* @param tensors The tensors to be used in the operation recorded
* @param sequenceName The name of the sequence to be retrieved or created
* @param TArgs Template parameters that will be used to initialise Operation to allow for extensible configurations on initialisation
*/
template<typename T, typename... TArgs>
void evalOp(std::vector<std::shared_ptr<Tensor>> tensors,

View file

@ -79,6 +79,7 @@ class Sequence
* not be able to add the operation.
*
* @param tensors Vector of tensors to use for the operation
* @param TArgs Template parameters that are used to initialise operation which allows for extensible configurations on initialisation.
*/
template<typename T, typename... TArgs>
bool record(std::vector<std::shared_ptr<Tensor>> tensors, TArgs&&... params)