File: control

package info (click to toggle)
fxdiv 0.0~git20200417.b408327-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 160 kB
  • sloc: cpp: 431; ansic: 374; python: 19; makefile: 10
file content (23 lines) | stat: -rw-r--r-- 925 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Source: fxdiv
Section: math
Homepage: https://github.com/Maratyszcza/FXDiv
Priority: optional
Standards-Version: 4.5.0
Vcs-Git: https://salsa.debian.org/deeplearning-team/fxdiv.git
Vcs-Browser: https://salsa.debian.org/deeplearning-team/fxdiv
Maintainer: Debian Deep Learning Team <debian-ai@lists.debian.org>
Uploaders: Mo Zhou <lumin@debian.org>
Rules-Requires-Root: no
Build-Depends: cmake, debhelper-compat (= 13), googletest, libbenchmark-dev

Package: libfxdiv-dev
Section: libdevel
Architecture: any
Depends: ${misc:Depends}
Description: 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.
 .
 This is a header-only library.