mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
Add a few benchmarks for R6RS fixnum arithmetic
* benchmark-suite/benchmarks/r6rs-arithmetic.bm: New file containing some benchmarks for R6RS fixnum operations. * benchmark-suite/Makefile.am (SCM_BENCHMARKS): Add benchmarks/r6rs-arithmetic.
This commit is contained in:
parent
90fed973ab
commit
b7715701b4
2 changed files with 36 additions and 0 deletions
|
@ -6,6 +6,7 @@ SCM_BENCHMARKS = benchmarks/0-reference.bm \
|
|||
benchmarks/if.bm \
|
||||
benchmarks/logand.bm \
|
||||
benchmarks/ports.bm \
|
||||
benchmarks/r6rs-arithmetic.bm \
|
||||
benchmarks/read.bm \
|
||||
benchmarks/srfi-1.bm \
|
||||
benchmarks/srfi-13.bm \
|
||||
|
|
35
benchmark-suite/benchmarks/r6rs-arithmetic.bm
Normal file
35
benchmark-suite/benchmarks/r6rs-arithmetic.bm
Normal file
|
@ -0,0 +1,35 @@
|
|||
;;; -*- mode: scheme; coding: utf-8; -*-
|
||||
;;; R6RS-specific arithmetic benchmarks
|
||||
;;;
|
||||
;;; Copyright (C) 2011 Free Software Foundation, Inc.
|
||||
;;;
|
||||
;;; This library is free software; you can redistribute it and/or
|
||||
;;; modify it under the terms of the GNU Lesser General Public
|
||||
;;; License as published by the Free Software Foundation; either
|
||||
;;; version 3 of the License, or (at your option) any later version.
|
||||
;;;
|
||||
;;; This library is distributed in the hope that it will be useful,
|
||||
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
;;; Lesser General Public License for more details.
|
||||
;;;
|
||||
;;; You should have received a copy of the GNU Lesser General Public
|
||||
;;; License along with this library. If not, see
|
||||
;;; <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (benchmarks r6rs-arithmetic)
|
||||
#:use-module (benchmark-suite lib)
|
||||
#:use-module (rnrs arithmetic fixnums))
|
||||
|
||||
|
||||
(with-benchmark-prefix "fixnum"
|
||||
|
||||
(benchmark "fixnum? [yes]" 1e7
|
||||
(fixnum? 10000))
|
||||
|
||||
(let ((n (+ most-positive-fixnum 100)))
|
||||
(benchmark "fixnum? [no]" 1e7
|
||||
(fixnum? n)))
|
||||
|
||||
(benchmark "fxxor [2]" 1e7
|
||||
(fxxor 3 8)))
|
Loading…
Add table
Add a link
Reference in a new issue