Fully working end to end flow

This commit is contained in:
Alejandro Saucedo 2020-08-22 20:13:30 +01:00
parent 622b8c4bc7
commit 9f74679dd5
10 changed files with 57 additions and 41 deletions

View file

@ -65,6 +65,12 @@ Manager::~Manager()
}
}
Sequence
Manager::constructSequence() {
SPDLOG_DEBUG("Kompute Manager creating Sequence object");
return Sequence(this->mPhysicalDevice, this->mDevice, this->mComputeQueue, this->mComputeQueueFamilyIndex);
}
void
Manager::createInstance()
{