Copyright | (c) 2014 Bryan O'Sullivan |
---|---|
License | BSD-style |
Maintainer | bos@serpentine.com |
Stability | experimental |
Portability | GHC |
Safe Haskell | None |
Language | Haskell2010 |
Benchmarking command-line configuration.
Synopsis
- data Mode
- data MatchType
- defaultConfig :: Config
- parseWith :: Config -> Parser Mode
- config :: Config -> Parser Config
- describe :: Config -> ParserInfo Mode
- describeWith :: Parser a -> ParserInfo a
- versionInfo :: String
Documentation
Execution mode for a benchmark program.
List | List all benchmarks. |
Version | Print the version. |
RunIters Config Int64 MatchType [String] | Run the given benchmarks, without collecting or analysing performance numbers. |
Run Config MatchType [String] | Run and analyse the given benchmarks. |
Instances
How to match a benchmark name.
Prefix | Match by prefix. For example, a prefix of
|
Glob | Match by Unix-style glob pattern. When using this match
type, benchmark names are treated as if they were
file-paths. For example, the glob patterns |
Pattern | Match by searching given substring in benchmark paths. |
IPattern | Same as |
Instances
Bounded MatchType Source # | |
Enum MatchType Source # | |
Defined in Criterion.Main.Options succ :: MatchType -> MatchType # pred :: MatchType -> MatchType # fromEnum :: MatchType -> Int # enumFrom :: MatchType -> [MatchType] # enumFromThen :: MatchType -> MatchType -> [MatchType] # enumFromTo :: MatchType -> MatchType -> [MatchType] # enumFromThenTo :: MatchType -> MatchType -> MatchType -> [MatchType] # | |
Eq MatchType Source # | |
Data MatchType Source # | |
Defined in Criterion.Main.Options gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MatchType -> c MatchType # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MatchType # toConstr :: MatchType -> Constr # dataTypeOf :: MatchType -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c MatchType) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MatchType) # gmapT :: (forall b. Data b => b -> b) -> MatchType -> MatchType # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MatchType -> r # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MatchType -> r # gmapQ :: (forall d. Data d => d -> u) -> MatchType -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> MatchType -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> MatchType -> m MatchType # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MatchType -> m MatchType # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MatchType -> m MatchType # | |
Ord MatchType Source # | |
Defined in Criterion.Main.Options | |
Read MatchType Source # | |
Show MatchType Source # | |
Generic MatchType Source # | |
type Rep MatchType Source # | |
Defined in Criterion.Main.Options type Rep MatchType = D1 ('MetaData "MatchType" "Criterion.Main.Options" "criterion-1.5.13.0-CfQ6T2AqQFi6DnFbWJASf1" 'False) ((C1 ('MetaCons "Prefix" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Glob" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Pattern" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "IPattern" 'PrefixI 'False) (U1 :: Type -> Type))) |
defaultConfig :: Config Source #
Default benchmarking configuration.
Parse a command line.
describeWith :: Parser a -> ParserInfo a Source #
Flesh out command-line information using a custom Parser
.
versionInfo :: String Source #
A string describing the version of this benchmark (really, the version of criterion that was used to build it).