Updated init parameter to be tensor vector

This commit is contained in:
Alejandro Saucedo 2020-08-20 05:27:42 +01:00
parent 90ea083cba
commit 8aa7843f0e
7 changed files with 108 additions and 16 deletions

View file

@ -37,7 +37,7 @@ class OpBase
SPDLOG_DEBUG("Compute OpBase destructor started");
}
virtual void init(std::shared_ptr<Tensor> tensor, ...) {
virtual void init(std::vector<std::shared_ptr<Tensor>> tensors) {
SPDLOG_DEBUG("Kompute OpBase init called");
}