@@ -72,7 +72,8 @@ class Manager
7272 * Create a new managed Kompute sequence so it's available within the
7373 * manager.
7474 *
75- * @param sequenceName The name for the named sequence to be created, if empty then default indexed value is used
75+ * @param sequenceName The name for the named sequence to be created, if
76+ * empty then default indexed value is used
7677 * @param queueIndex The queue to use from the available queues
7778 * @return Weak pointer to the manager owned sequence resource
7879 */
@@ -125,8 +126,10 @@ class Manager
125126 {
126127 SPDLOG_DEBUG (" Kompute Manager evalOp Default triggered" );
127128 this ->mCurrentSequenceIndex ++;
128- this ->evalOp <T>(
129- tensors, KP_DEFAULT_SESSION + std::to_string (this ->mCurrentSequenceIndex ), std::forward<TArgs>(params)...);
129+ this ->evalOp <T>(tensors,
130+ KP_DEFAULT_SESSION +
131+ std::to_string (this ->mCurrentSequenceIndex ),
132+ std::forward<TArgs>(params)...);
130133 }
131134
132135 /* *
@@ -168,20 +171,23 @@ class Manager
168171 }
169172
170173 /* *
171- * Operation that evaluates operation against default sequence asynchronously.
174+ * Operation that evaluates operation against default sequence
175+ * asynchronously.
172176 *
173177 * @param tensors The tensors to be used in the operation recorded
174178 * @param params Template parameters that will be used to initialise
175179 * Operation to allow for extensible configurations on initialisation
176180 */
177181 template <typename T, typename ... TArgs>
178182 void evalOpAsyncDefault (std::vector<std::shared_ptr<Tensor>> tensors,
179- TArgs&&... params)
183+ TArgs&&... params)
180184 {
181185 SPDLOG_DEBUG (" Kompute Manager evalOpAsyncDefault triggered" );
182186 this ->mCurrentSequenceIndex ++;
183- this ->evalOpAsync <T>(
184- tensors, KP_DEFAULT_SESSION + std::to_string (this ->mCurrentSequenceIndex ), std::forward<TArgs>(params)...);
187+ this ->evalOpAsync <T>(tensors,
188+ KP_DEFAULT_SESSION +
189+ std::to_string (this ->mCurrentSequenceIndex ),
190+ std::forward<TArgs>(params)...);
185191 }
186192
187193 /* *
@@ -192,7 +198,8 @@ class Manager
192198 */
193199 void evalOpAwait (std::string sequenceName, uint64_t waitFor = UINT64_MAX)
194200 {
195- SPDLOG_DEBUG (" Kompute Manager evalOpAwait triggered with sequence {}" , sequenceName);
201+ SPDLOG_DEBUG (" Kompute Manager evalOpAwait triggered with sequence {}" ,
202+ sequenceName);
196203 std::unordered_map<std::string, std::shared_ptr<Sequence>>::iterator
197204 found = this ->mManagedSequences .find (sequenceName);
198205
@@ -221,7 +228,9 @@ class Manager
221228 void evalOpAwaitDefault (uint64_t waitFor = UINT64_MAX)
222229 {
223230 SPDLOG_DEBUG (" Kompute Manager evalOpAwaitDefault triggered" );
224- this ->evalOpAwait (KP_DEFAULT_SESSION + std::to_string (this ->mCurrentSequenceIndex ), waitFor);
231+ this ->evalOpAwait (KP_DEFAULT_SESSION +
232+ std::to_string (this ->mCurrentSequenceIndex ),
233+ waitFor);
225234 }
226235
227236 /* *
0 commit comments