aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarat Dukhan <maratek@gmail.com>2017-03-06 14:12:20 -0500
committerGitHub <noreply@github.com>2017-03-06 14:12:20 -0500
commitad0abcf4dd0c0a83d7e2e18bcb9917306c850cbc (patch)
treeb6b819eb4b060e20552ea59282759b2e50d761d1
parent791777aeccd6b2b8f40154ebd591f0c5d61afb26 (diff)
downloadFXdiv-ad0abcf4dd0c0a83d7e2e18bcb9917306c850cbc.tar.gz
README: add license and Travis-CI badges
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index d0493a4..5c73c67 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,9 @@
# FXdiv
+
+[![BSD (2 clause) License](https://img.shields.io/badge/License-MIT%20License-blue.svg)](https://github.com/Maratyszcza/FXdiv/blob/master/LICENSE)
+[![Build Status](https://img.shields.io/travis/Maratyszcza/FXdiv.svg)](https://travis-ci.org/Maratyszcza/FXdiv)
+
+
Header-only library for division via fixed-point multiplication by inverse
On modern CPUs and GPUs integer division is several times slower than multiplication. FXdiv implements an algorithm to replace an integer division with a multiplication and two shifts. This algorithm improves performance when an application performs repeated divisions by the same divisor.