We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9016285 commit ebd8816Copy full SHA for ebd8816
shake-bench/src/Development/Benchmark/Rules.hs
@@ -259,7 +259,7 @@ benchRules build benchResource MkBenchRules{..} = do
259
results = tail csvContents
260
header' = header <> ", maxResidency, allocatedBytes"
261
results' <- forM results $ \row -> do
262
- (maxResidency, allocations) <- liftIO $
+ (maxResidency, allocations) <- liftIO
263
(parseMaxResidencyAndAllocations <$> readFile outGc)
264
return $ printf "%s, %s, %s" row (showMB maxResidency) (showMB allocations)
265
let csvContents' = header' : results'
0 commit comments