2 writes to _temp
Microsoft.ML.Data (2)
DataView\CacheDataView.cs (2)
1364
_getter(ref
_temp
);
1418
_temp
= default(VBuffer<T>);
7 references to _temp
Microsoft.ML.Data (7)
DataView\CacheDataView.cs (7)
1365
if (_uniformLength != 0 && _uniformLength !=
_temp
.Length)
1366
throw Ctx.Except("Caching expected vector of size {0}, but {1} encountered.", _uniformLength,
_temp
.Length);
1367
Ctx.Assert(_uniformLength == 0 || _uniformLength ==
_temp
.Length);
1368
if (!
_temp
.IsDense)
1369
_indices.AddRange(
_temp
.GetIndices());
1370
_values.AddRange(
_temp
.GetValues());
1380
_lengths[rowCount - 1] =
_temp
.Length;