fix return type for bool functions

This commit is contained in:
perseusdg
2021-08-04 12:37:58 +05:30
parent bb902f5b65
commit d2ce966c46
4 changed files with 6 additions and 1 deletions
+1
View File
@@ -183,6 +183,7 @@ class SegmentationNN {
checkCuda(cudaMemcpyAsync(mean_d, mean.data(), mean.size() * sizeof(float), cudaMemcpyHostToDevice, netRT->stream));
checkCuda(cudaMemcpyAsync(stddev_d, stddev.data(), stddev.size() * sizeof(float), cudaMemcpyHostToDevice, netRT->stream));
return true;
}