HSA memory alloc/copy/free refactoring

This commit is contained in:
Evgeny
2018-04-20 11:15:26 -05:00
parent b2bf09b9e0
commit d04f7095f4
10 ha cambiato i file con 87 aggiunte e 36 eliminazioni
+3 -4
Vedi File
@@ -214,11 +214,10 @@ bool TestHsa::Run() {
total_time_taken_ += dispatch_time_taken_;
// Copy kernel buffers from local memory into system memory
hsa_rsrc_->TransferData(test_->GetOutputPtr(), test_->GetLocalPtr(), test_->GetOutputSize(),
false);
test_->PrintOutput();
const bool suc = hsa_rsrc_->CopyToHost(test_->GetOutputPtr(), test_->GetLocalPtr(), test_->GetOutputSize());
if (suc) test_->PrintOutput();
return true;
return suc;
}
bool TestHsa::VerifyResults() {