about summary refs log tree commit diff
path: root/benchtests/log-inputs
Commit message (Collapse)AuthorAgeFilesLines
* benchmark inputs for exp2, log2, log and tanSiddhesh Poyarekar2013-12-121-1/+292
|
* Add more directives to benchmark input filesSiddhesh Poyarekar2013-10-071-0/+3
| | | | | | | | | | | | | | | | | | | | | | This patch adds some more directives to the benchmark inputs file, moving functionality from the Makefile and making the code generation script a bit cleaner. The function argument and return types that were earlier added as variables in the makefile and passed to the script via command line arguments are now the 'args' and 'ret' directive respectively. 'args' should be a colon separated list of argument types (skipped if the function doesn't accept any arguments) and 'ret' should be the return type. Additionally, an 'includes' directive may have a comma separated list of headers to include in the source. For example, the pow input file now looks like this: 42.0, 42.0 1.0000000000000020, 1.5 I did this to unclutter the benchtests Makefile a bit and eventually eliminate dependency of the tests on the Makefile and have tests depend on their respective include files only.
* Add benchmark inputs for math functionsSiddhesh Poyarekar2013-05-221-0/+1
Add benchmark inputs for inverse and hyperbolic trigonometric functions and log.