9 references to _bufferPools
Microsoft.ML.FastTree (9)
Utils\BufferPoolManager.cs (9)
43
if (!
_bufferPools
.TryGetValue(typeof(T), out availableBuffers))
46
_bufferPools
.TryGetValue(typeof(T), out availableBuffers);
86
if (!
_bufferPools
.TryGetValue(typeof(T), out availableBuffers))
89
bool tmp =
_bufferPools
.TryGetValue(typeof(T), out availableBuffers);
114
if (
_bufferPools
.TryGetValue(type, out availableBuffers))
128
foreach (var type in
_bufferPools
.Keys)
149
lock (
_bufferPools
)
151
if (!
_bufferPools
.ContainsKey(type))
153
_bufferPools
[type] = new SortedList<int, List<Array>>();