Merge pull request #13220 from dragmz/patch-1

reduce static memory usage
This commit is contained in:
Rémi Verschelde 2017-11-23 21:51:37 +01:00 committed by GitHub
commit 4feeca0021
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -302,7 +302,7 @@ class CommandQueueMT {
/***** BASE *******/
enum {
COMMAND_MEM_SIZE_KB = 256 * 1024,
COMMAND_MEM_SIZE_KB = 256,
COMMAND_MEM_SIZE = COMMAND_MEM_SIZE_KB * 1024,
SYNC_SEMAPHORES = 8
};