summaryrefslogtreecommitdiff
path: root/benchmark/benchmark-pandoc.hs
Commit message (Collapse)AuthorAge
* benchmark - removed kludge we needed before CommonMark writer.John MacFarlane2015-03-30
|
* Merge branch 'errortype' of https://github.com/mpickering/pandoc into ↵John MacFarlane2015-03-28
|\ | | | | | | | | | | | | | | | | | | | | mpickering-errortype Conflicts: benchmark/benchmark-pandoc.hs src/Text/Pandoc/Readers/Markdown.hs src/Text/Pandoc/Readers/Org.hs src/Text/Pandoc/Readers/RST.hs tests/Tests/Readers/LaTeX.hs
| * Update benchmarksMatthew Pickering2015-02-18
| |
* | Added CommonMark reader using cmark (libcmark bindings).John MacFarlane2015-03-17
|/ | | | | | | | - Added commonmark as an input format. - Added `Text.Pandoc.Readers.CommonMark.readCommonMark`. - For now, we use the markdown writer to generate benchmark text for the CommonMark reader. We can change this when we get a writer.
* benchmark: use only test suite for benchmark.John MacFarlane2014-08-01
| | | | This way the benchmarks don't take so long to run.
* Use nfIO in benchmark instead of getLength trick.John MacFarlane2014-08-01
|
* Make benchmarks compile again.Artyom Kazak2014-08-01
| | | | | Additionally, fix the problem which caused one failing benchmark to stop other benchmarks from running.
* Update copyright notices for 2014, add missing noticesAlbert Krewinkel2014-05-09
|
* benchmark: Remove haddock (no writer to create reader input).John MacFarlane2013-09-10
|
* Revised benchmark for new metadata.John MacFarlane2013-06-25
|
* Use aeson for json.John MacFarlane2013-06-24
| | | | Benchmarked: about twice as slow as json!
* Updated benchmark code for changes in Text.Pandoc.John MacFarlane2013-01-04
|
* Fixed benchmark file to find documentation files.John MacFarlane2012-12-29
|
* Data files changes.John MacFarlane2012-12-29
| | | | | | | | | | * Added `embed_data_files` flag. (not yet used) * Shared no longer exports `findDataFile`. * `readDataFile` now returns a strict bytestring. * Shared now exports `readDataFileUTF8` which returns a string like the old `readDataFile`. * Rewrote modules to use new data file functions and to avoid using functions from Paths_pandoc directly.
* Changes to literate haskell options.John MacFarlane2012-08-08
| | | | | | | | | | | - Removed writerLiterateHaskell from WriterOptions. - Removed readerLiterateHaskell from ReaderOptions. - Added Ext_literate_haskell to Extensions. Test for this instead of the above. - Removed failUnlessLHS from Shared. Note: At this point, +lhs and .lhs extension no longer has any effect. Need to fix.
* Benchmark: default to sample size of 20 for speed.John MacFarlane2012-07-27
|
* Use README + testsuite in benchmarks.John MacFarlane2012-07-27
|
* Moved WriterOptions and associated types Shared -> Options.John MacFarlane2012-07-26
|
* Added type signature.John MacFarlane2012-07-26
|
* Integrated benchmark into cabal.John MacFarlane2012-07-26
Can now do: cabal configure --enable-benchmarks && cabal build cabal bench --benchmark-option='markdown' --benchmark-option='-s 20'