hsbencher-1.0: example/make_and_ghc/benchmark.hs
import HSBencher
import qualified Data.Map as M
import System.Environment (getEnvironment)
import System.Directory (setCurrentDirectory, getDirectoryContents, getCurrentDirectory)
import System.IO.Unsafe (unsafePerformIO)
import GHC.Conc (getNumProcessors)
main = do
-- Hack to deal with running from cabal:
rightDir <- fmap ("benchmark.hs" `elem`) $ getDirectoryContents =<< getCurrentDirectory
if rightDir then return ()
else do
path <- getCurrentDirectory
let hackD = "./example/make_and_ghc"
putStrLn$"HACK: changing from "++path++" to "++hackD
setCurrentDirectory hackD
defaultMainWithBechmarks benches
benches =
[ Benchmark "bench1/" ["unused_cmdline_arg"] envExample
-- , Benchmark "bench2/Hello.hs" [] withthreads
]
-- No benchmark configuration space.
none = And []
envExample =
Or [ And [ Set NoMeaning (CompileParam "-DNOTHREADING")
, Set (Threads 1) (RuntimeEnv "CILK_NPROCS" "1") ]
, And [ Set NoMeaning (CompileParam "-DTHREADING")
, Or [ Set (Threads 3) (RuntimeEnv "CILK_NPROCS" "3")
, Set (Threads 4) (RuntimeEnv "CILK_NPROCS" "4")
]
]
]
withthreads = defaultHSSettings$
varyThreads none
defaultHSSettings spc =
And [
Set NoMeaning (CompileParam "-threaded -rtsopts")
, Set NoMeaning (RuntimeParam "+RTS -s -qa -RTS")
, Set NoMeaning (CmdPath "ghc" "ghc") -- Does nothing.
, spc]
varyThreads :: BenchSpace DefaultParamMeaning -> BenchSpace DefaultParamMeaning
varyThreads conf = And [ conf, Or (map fn threadSelection) ]
where
fn n = Set (Threads n) $ RuntimeParam ("+RTS -N"++ show n++" -RTS")
threadSelection :: [Int]
threadSelection = unsafePerformIO $ do
env <- getEnvironment
p <- getNumProcessors
return [1 .. p]