AlexeyAB
2017-03-28 2662cd51a32cf8292ccce555f64880f460108d2d
Fixed sequence of freeing memory.
1 files modified
2 ■■■ changed files
src/yolo_v2_class.cpp 2 ●●● patch | view | raw | blame | history
src/yolo_v2_class.cpp
@@ -79,9 +79,9 @@
    for (int j = 0; j < FRAMES; ++j) free(detector_gpu.predictions[j]);
    for (int j = 0; j < FRAMES; ++j) if(detector_gpu.images[j].data) free(detector_gpu.images[j].data);
    for (int j = 0; j < l.w*l.h*l.n; ++j) free(detector_gpu.probs[j]);
    free(detector_gpu.boxes);
    free(detector_gpu.probs);
    for (int j = 0; j < l.w*l.h*l.n; ++j) free(detector_gpu.probs[j]);
    int old_gpu_index;
    cudaGetDevice(&old_gpu_index);