Skip to content

Commit

Permalink
Mistakenly commented out other examples to stress test 1brc.
Browse files Browse the repository at this point in the history
  • Loading branch information
mchav committed Jan 17, 2025
1 parent eb888a4 commit c59f7de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ default (Int, T.Text, Double)
main :: IO ()
main = do
putStrLn "Housing"
-- housing
housing
putStrLn $ replicate 100 '-'

putStrLn "Chipotle Data"
-- chipotle
chipotle
putStrLn $ replicate 100 '-'

putStrLn "One Billion Row Challenge"
Expand All @@ -44,7 +44,7 @@ mean xs = VG.sum xs / fromIntegral (VG.length xs)

oneBillingRowChallenge :: IO ()
oneBillingRowChallenge = do
parsed <- D.readSeparated ';' D.defaultOptions "../1brc/32_5M.txt"
parsed <- D.readSeparated ';' D.defaultOptions "./data/measurements.txt"
print $
parsed
|> D.groupBy ["City"]
Expand Down

0 comments on commit c59f7de

Please sign in to comment.