1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

cuda_stream: do not allocate GPU memory by default (fixes #8725)

This commit is contained in:
Namgoo Lee
2018-02-01 03:45:51 +09:00
parent a75840d19c
commit 3cf535926a
+1 -1
View File
@@ -552,7 +552,7 @@ Stream cv::cuda::StreamAccessor::wrapStream(cudaStream_t stream)
namespace
{
bool enableMemoryPool = true;
bool enableMemoryPool = false;
class StackAllocator : public GpuMat::Allocator
{