update org-mode syntax, include benchmark.html

This commit is contained in:
psyc://psyced.org/~lynX 2015-08-14 10:45:55 +02:00
parent ba5245a6b0
commit 0db0869443
4 changed files with 1109 additions and 4 deletions

4
bench/.gitignore vendored
View File

@ -1,4 +1,4 @@
*.html # *.html
*.pdf # *.pdf
results/ results/
packets/binary/[0-9]* packets/binary/[0-9]*

View File

@ -10,11 +10,11 @@ INIT = (setq load-path (cons \"/usr/share/emacs/site-lisp/org-mode\" load-path)
#' #'
ORG = benchmark.org ORG = benchmark.org
html: it:
for f in ${ORG}; do \ for f in ${ORG}; do \
emacs -Q --batch --eval \ emacs -Q --batch --eval \
"(progn ${INIT} (find-file \"$$f\") \ "(progn ${INIT} (find-file \"$$f\") \
(org-export-as-html-batch) (kill-buffer))"; \ (org-html-export-to-html) (kill-buffer))"; \
done done
pdf: pdf:

1104
bench/benchmark.html Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,5 @@
#+TITLE: libpsyc Performance Benchmarks #+TITLE: libpsyc Performance Benchmarks
#+HTML: <style type="text/css"> body { padding: 44px; } </style>
In this document we present the results of performance benchmarks In this document we present the results of performance benchmarks
of libpsyc compared to json-c, libjson-glib, rapidxml and libxml2. of libpsyc compared to json-c, libjson-glib, rapidxml and libxml2.