File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/Microsoft.ML.Data/DataLoadSave/Text Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 66
66
<!-- Version properties -->
67
67
<PropertyGroup >
68
68
<VersionPrefix >$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix >
69
+ <BuildNumberMajor Condition =" '$(BuildNumberMajor)' == ''" >00001</BuildNumberMajor >
70
+ <BuildNumberMinor Condition =" '$(BuildNumberMinor)' == ''" >0</BuildNumberMinor >
69
71
<AssemblyFileVersion Condition =" '$(AssemblyFileVersion)'==''" >$(MajorVersion).$(MinorVersion).$(BuildNumberMajor).$(BuildNumberMinor)</AssemblyFileVersion >
70
72
71
73
<StabilizePackageVersion Condition =" '$(StabilizePackageVersion)' == ''" >false</StabilizePackageVersion >
Original file line number Diff line number Diff line change @@ -826,7 +826,7 @@ private IEnumerable<int> ParseParallel(ParallelState state)
826
826
foreach ( var batch in state . GetBatches ( ) )
827
827
{
828
828
// If the collation of rows happened correctly, this should have a precise value.
829
- Contracts . Assert ( batch . Total == _total + 1 ) ;
829
+ Contracts . Assert ( batch . Total == _total + 1 , $ "batch.Total: { batch . Total } while _total + 1: { _total + 1 } ." ) ;
830
830
_total = batch . Total - 1 ;
831
831
for ( int irow = batch . IrowMin ; irow < batch . IrowLim ; irow ++ )
832
832
{
You can’t perform that action at this time.
0 commit comments