1 instantiation of RowIdDataViewType
Microsoft.ML.DataView (1)
DataViewType.cs (1)
298Interlocked.CompareExchange(ref _instance, new RowIdDataViewType(), null) ??
17 references to RowIdDataViewType
Microsoft.ML.Core (3)
Data\ColumnTypeExtensions.cs (3)
22(columnType is RowIdDataViewType) || (columnType is TimeSpanDataViewType) || 108return RowIdDataViewType.Instance; 125return RowIdDataViewType.Instance;
Microsoft.ML.Core.Tests (1)
UnitTests\ColumnTypes.cs (1)
28NumberDataViewType.Byte, NumberDataViewType.UInt16, NumberDataViewType.UInt32, NumberDataViewType.UInt64, RowIdDataViewType.Instance,
Microsoft.ML.Data (6)
Data\DataViewUtils.cs (3)
360outPipes[idIdx] = OutPipe.Create(RowIdDataViewType.Instance, GetPool(RowIdDataViewType.Instance, ourPools, idIdx)); 550outPipes[i][idIdx] = inPipes[idIdx].CreateOutPipe(RowIdDataViewType.Instance);
DataLoadSave\Binary\Codecs.cs (1)
163type == typeof(DataViewRowId) ? (DataViewType)RowIdDataViewType.Instance :
Transforms\Hashing.cs (1)
1895itemType is BooleanDataViewType || itemType is RowIdDataViewType;
Transforms\RowShufflingTransformer.cs (1)
534var idPipe = _pipes[numActive + (int)ExtraIndex.Id] = ShufflePipe.Create(_pipeIndices.Length, RowIdDataViewType.Instance, input.GetIdGetter());
Microsoft.ML.DataView (4)
DataViewType.cs (4)
284/// The <see cref="RowIdDataViewType "/> type. This has representation type of <see cref="DataViewRowId"/>. 289private static volatile RowIdDataViewType _instance; 293public static RowIdDataViewType Instance 312Debug.Assert(!(other is RowIdDataViewType));
Microsoft.ML.Parquet (1)
ParquetLoader.cs (1)
351return RowIdDataViewType.Instance;
Microsoft.ML.Tests (1)
Transformers\HashTests.cs (1)
274HashTestCore(new DataViewRowId(value, 0), RowIdDataViewType.Instance, expected, expectedOrdered, expectedOrdered3, expectedCombined, expectedCombinedSparse);
Microsoft.ML.Transforms (1)
ProduceIdTransform.cs (1)
48return RowIdDataViewType.Instance;