Skip to content
Snippets Groups Projects
Commit 821decb9 authored by Hashim Sharif's avatar Hashim Sharif
Browse files

Bug Fix for freeing FP16 gpu data

parent 02808b31
No related branches found
No related tags found
No related merge requests found
...@@ -63,6 +63,20 @@ struct Tensor* getRuntimeTensor(struct Tensor* hpvm_tensor){ ...@@ -63,6 +63,20 @@ struct Tensor* getRuntimeTensor(struct Tensor* hpvm_tensor){
*/ */
/*void freeCudaPtr(void* cuda_ptr){
int i;
for(i = 0; i < tensors_ptr.size(); i++){
if(tensors_ptr[i] == cuda_ptr)
break;
}
tensors_ptr.erase(tensors_ptr.begin()+i);
cudaFree(cuda_ptr);
}
*/
void freeTensor(void* tensor_ptr){ void freeTensor(void* tensor_ptr){
Tensor* tensor = (Tensor*) tensor_ptr; Tensor* tensor = (Tensor*) tensor_ptr;
...@@ -536,9 +550,10 @@ void convertToFP32_offline(struct Tensor* tensor){ ...@@ -536,9 +550,10 @@ void convertToFP32_offline(struct Tensor* tensor){
h2f((half*) tensor->gpu_half_data, tensor->num_elems, (float*) tensor->gpu_data); h2f((half*) tensor->gpu_half_data, tensor->num_elems, (float*) tensor->gpu_data);
tensor->cur_type = float_type; tensor->cur_type = float_type;
cudaFree(tensor->gpu_half_data); //freeCudaPtr(tensor->gpu_half_data);
tensor->gpu_half_data = NULL; //cudaFree(tensor->gpu_half_data);
//tensor->gpu_half_data = NULL;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment