@@ -233,6 +233,7 @@ protected void DoNotEverUseInvertPass()
233
233
private static readonly Regex _matchTime = new Regex ( @"[0-9]{2}:[0-9]{2}:[0-9]{2}(\.[0-9]+)?" , RegexOptions . Compiled ) ;
234
234
private static readonly Regex _matchShortTime = new Regex ( @"\([0-9]{2}:[0-9]{2}(\.[0-9]+)?\)" , RegexOptions . Compiled ) ;
235
235
private static readonly Regex _matchMemory = new Regex ( @"memory usage\(MB\): [0-9]+" , RegexOptions . Compiled ) ;
236
+ private static readonly Regex _matchReservedMemory = new Regex ( @": [0-9]+ bytes" , RegexOptions . Compiled ) ;
236
237
private static readonly Regex _matchElapsed = new Regex ( @"Time elapsed\(s\): [0-9.]+" , RegexOptions . Compiled ) ;
237
238
private static readonly Regex _matchTimes = new Regex ( @"Instances caching time\(s\): [0-9\.]+" , RegexOptions . Compiled ) ;
238
239
private static readonly Regex _matchUpdatesPerSec = new Regex ( @", ([0-9\.]+|Infinity)M WeightUpdates/sec" , RegexOptions . Compiled ) ;
@@ -281,6 +282,7 @@ protected void Normalize(string path)
281
282
line = _matchShortTime . Replace ( line , "(%Time%)" ) ;
282
283
line = _matchElapsed . Replace ( line , "Time elapsed(s): %Number%" ) ;
283
284
line = _matchMemory . Replace ( line , "memory usage(MB): %Number%" ) ;
285
+ line = _matchReservedMemory . Replace ( line , ": %Number% bytes" ) ;
284
286
line = _matchTimes . Replace ( line , "Instances caching time(s): %Number%" ) ;
285
287
line = _matchUpdatesPerSec . Replace ( line , ", %Number%M WeightUpdates/sec" ) ;
286
288
line = _matchParameterT . Replace ( line , "=PARAM:/t:%Number%" ) ;
0 commit comments