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

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
{