X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=utils%2Fnofib-analyse%2FCmdLine.hs;h=0a303e15aead7812dc6c0adcae51ec271d0cb8ed;hb=dc6a72b94f1c2de24cf51a2ca8f44ada6db17ab9;hp=3861a30daed396e1ce153dc3ebee4d1b43edc4dd;hpb=6d2b0b3479a3ce00c3b4a01255e4dab09eb08783;p=ghc-hetmet.git diff --git a/utils/nofib-analyse/CmdLine.hs b/utils/nofib-analyse/CmdLine.hs index 3861a30..0a303e1 100644 --- a/utils/nofib-analyse/CmdLine.hs +++ b/utils/nofib-analyse/CmdLine.hs @@ -54,6 +54,8 @@ data CLIFlags | OptTitle String | OptColumns String | OptRows String + | OptCSV String + | OptNoNormalise | OptHelp deriving Eq @@ -81,6 +83,10 @@ argInfo = "Specify columns for summary table (comma separates)" , Option [] ["rows"] (ReqArg OptRows "ROWS") "Specify rows for summary table (comma separates)" + , Option [] ["csv"] (ReqArg OptCSV "TABLE") + "Output a single table in CSV format" + , Option [] ["no-normalise"] (NoArg OptNoNormalise) + "Do not normalise to the baseline" , Option ['n'] ["nodeviations"] (NoArg OptNoDeviations) "Hide deviations" , Option ['t'] ["title"] (ReqArg OptTitle "title")