libatomicbitvector 0.0+git20200519.e295358-2 source package in Ubuntu

Changelog

libatomicbitvector (0.0+git20200519.e295358-2) unstable; urgency=medium

  * Remove trailing whitespace in debian/copyright (routine-update)
  * Rules-Requires-Root: no (routine-update)
  * Set upstream metadata fields: Bug-Database, Bug-Submit.

 -- Andreas Tille <email address hidden>  Thu, 11 Jun 2020 21:59:05 +0200

Upload details

Uploaded by:
Debian Med
Uploaded to:
Sid
Original maintainer:
Debian Med
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libatomicbitvector_0.0+git20200519.e295358-2.dsc 2.2 KiB 0998743bc50efc7fe0919356b475d1d763f41a01a41070d84557164f904ce67f
libatomicbitvector_0.0+git20200519.e295358.orig.tar.xz 9.2 KiB bde683520a535348bfb0a3ca6668e4b5ca142e94b8bc47987ccdb18ae8a08c25
libatomicbitvector_0.0+git20200519.e295358-2.debian.tar.xz 2.8 KiB 6f63e56ddb3373e7763d7430324df5a29cc4fa7c1d2ff94ffbdb1ba8e759c22a

No changes file available.

Binary packages built by this source

libatomicbitvector-dev: atomic bitset/bitvector with size determined at runtime

 This header-only library encodes a bitvector class with size fixed at
 runtime. Atomic operations allow for concurrent access and modification
 of the bitset. Such a structure can help with coordinating parallel
 processing of a given fixed set of entities, and has the advantage of
 only requiring O(1) bit per entry.
 .
 The atomic_bv_t class is a straightforward extension of ConcurrentBitSet
 from Facebook's folly C++ library. It wraps the atomic type with a class
 that allows them to be copied, and these wrapped atomic types are then
 used to build a vector whose size is determined at runtime.