1 write to High
Microsoft.ML.DataView (1)
DataViewRowId.cs (1)
34High = high;
34 references to High
Microsoft.ML.Data (10)
Data\Conversion.cs (6)
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 (3)
872if (old && value.High != 0) 874hash = Hashing.MurmurRound(hash, Utils.GetLo(value.High)); 875hi = Utils.GetHi(value.High);
Microsoft.ML.DataView (12)
DataViewRowId.cs (12)
40return string.Format("{0:x16}{1:x16}", High, Low); 45int result = High.CompareTo(other.High); 51return Low == other.Low && High == other.High; 67(uint)(High << 7) ^ (uint)(High >> 57) ^ (uint)(High >> (57 - 32))); 126ulong h2 = High; 147ulong h2 = High; 169var h2 = High; 173ulong k2 = other.High; // Second 8 bytes.
Microsoft.ML.StandardTrainers (5)
Standard\SdcaBinary.cs (5)
389if (id.High > 0 || id.Low >= (ulong)maxTrainingExamples) 396Contracts.Assert(id.High == 0); 1118Contracts.Assert(id.High == 0); 1149Contracts.Assert(id.High == 0); 1358ulong hi = value.High;
Microsoft.ML.Transforms (7)
MissingValueReplacingUtils.cs (7)
106ulong resHi = left.High; 115ulong resHi = left.High; 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);