You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation is schtum about this also, so I'm not sure, but is --raw FILE.txt supposed to output data that appears to be in binary/hex? I took "output raw data" to mean plain text results, as opposed to the HTML of -o. What form is --raw meant to output data in?
The text was updated successfully, but these errors were encountered:
@Kaos-Industries: bench is a thin wrapper around Haskell's criterion package so it automatically inherits any options defined by the parser provided by that package. In this case the --raw option corresponds to the rawDataFile field of criterion's Config type here:
File to write binary measurement and analysis data to. If not specified, this will be a temporary file.
So it sounds like it is supposed to be data formatted in binary that is almost an internal implementation detail. I don't know what the use case for that flag is.
The documentation is schtum about this also, so I'm not sure, but is
--raw FILE.txt
supposed to output data that appears to be in binary/hex? I took "output raw data" to mean plain text results, as opposed to the HTML of-o
. What form is--raw
meant to output data in?The text was updated successfully, but these errors were encountered: