1 write to Low
Microsoft.ML.DataView (1)
DataViewRowId.cs (1)
33Low = low;
39 references to Low
Microsoft.ML.Data (12)
Data\Conversion.cs (9)
843public void Convert(in UG src, ref U1 dst) => dst = src.High == 0 && src.Low <= U1.MaxValue ? (U1)src.Low : (U1)0; 851public void Convert(in UG src, ref U2 dst) => dst = src.High == 0 && src.Low <= U2.MaxValue ? (U2)src.Low : (U2)0; 859public void Convert(in UG src, ref U4 dst) => dst = src.High == 0 && src.Low <= U4.MaxValue ? (U4)src.Low : (U4)0; 867public void Convert(in UG src, ref U8 dst) => dst = src.High == 0 ? src.Low : (U8)0; 923public void Convert(in UG src, ref SB dst) { ClearDst(ref dst); dst.AppendFormat("0x{0:x16}{1:x16}", src.High, src.Low); } 948public void Convert(in UG src, ref TX dst) => dst = string.Format("0x{0:x16}{1:x16}", src.High, src.Low).AsMemory();
DataLoadSave\Binary\UnsafeTypeOps.cs (1)
198public override void Write(DataViewRowId a, BinaryWriter writer) { writer.Write(a.Low); writer.Write(a.High); }
Transforms\Hashing.cs (2)
868var hash = Hashing.MurmurRound(seed, Utils.GetLo(value.Low)); 869var hi = Utils.GetHi(value.Low);
Microsoft.ML.DataView (11)
DataViewRowId.cs (11)
40return string.Format("{0:x16}{1:x16}", High, Low); 46return result == 0 ? Low.CompareTo(other.Low) : result; 51return Low == other.Low && High == other.High; 66(uint)Low ^ (uint)(Low >> 32) ^ 125ulong h1 = Low; 146ulong h1 = Low; 168var h1 = Low; 172ulong k1 = other.Low; // First 8 bytes.
Microsoft.ML.StandardTrainers (8)
Standard\SdcaBinary.cs (8)
389if (id.High > 0 || id.Low >= (ulong)maxTrainingExamples) 397if (id.Low > idLoMax) 398idLoMax = id.Low; 1119Contracts.Assert((long)id.Low < maxTrainingExamples); 1120return (long)id.Low; 1150Contracts.Assert((long)id.Low < maxTrainingExamples); 1151return (long)id.Low; 1357ulong lo = value.Low;
Microsoft.ML.Transforms (8)
MissingValueReplacingUtils.cs (8)
107ulong resLo = left.Low + right; 116ulong resLo = left.Low - right; 117if (resLo > left.Low) 124return left.High == 0 && left.Low == right; 129return left.High > 0 || left.Low >= right; 134return left.High > 0 || left.Low > right; 142return value.High * ((double)(1UL << 32) * (1UL << 32)) + value.Low; 476Contracts.Assert(count.High != 0 || count.Low >= (ulong)_cna);