Added functional optensorsyncDevice and optensorsynclocal

This commit is contained in:
Alejandro Saucedo 2020-09-06 15:51:31 +01:00
parent e6f4097acb
commit e68d09dbdc
15 changed files with 258 additions and 50 deletions

View file

@ -80,12 +80,15 @@ OpTensorCreate::record()
}
void
OpTensorCreate::postSubmit()
OpTensorCreate::preEval()
{
SPDLOG_DEBUG("Kompute OpTensorCreate postSubmit called");
SPDLOG_DEBUG("Kompute OpTensorCreate preEval called");
}
SPDLOG_DEBUG("Kompute OpTensorCreate destroying staging tensors");
this->mStagingTensors.clear();
void
OpTensorCreate::postEval()
{
SPDLOG_DEBUG("Kompute OpTensorCreate postEval called");
}
}