Skip to content

Commit 74c0dc3

Browse files
committed
New release
1 parent ec608b6 commit 74c0dc3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+61
-62
lines changed

CHANGELOG

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
upcoming
1+
0.1.5 August 21st 2014
22
Added SIMD versions of OptPFD and NewPFD.
33
Fixed buffer overrun in varintg8iu
44
Factor out decodeBlock method from decodeArray (Matthias Petri)
5+
Renamed the FastPfor namespace FastPforLib to avoid name clash
56
0.1.4 May 21st 2014
67
Added "myths" section to README file
78
0.1.3 January 22nd 2014

example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
int main() {
17-
using namespace FastPFor;
17+
using namespace FastPForLib;
1818

1919
// We pick a CODEC
2020
IntegerCODEC & codec = * CODECFactory::getFromName("simdfastpfor");

headers/VarIntG8IU.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#define PREDICT_FALSE(x) x
1616
#endif
1717

18-
namespace FastPFor {
18+
namespace FastPForLib {
1919
/**
2020
*
2121
* Implementation of varint-G8IU taken from

headers/bitpackingaligned.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#include "common.h"
1111

12-
namespace FastPFor {
12+
namespace FastPForLib {
1313

1414
const uint32_t * fastunpack_8(const uint32_t * __restrict__ in,
1515
uint32_t * __restrict__ out, const uint32_t bit);

headers/bitpackinghelpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#include "bitpacking.h"
1212

13-
namespace FastPFor {
13+
namespace FastPForLib {
1414

1515
inline void fastunpack(const uint32_t * __restrict__ in, uint32_t * __restrict__ out, const uint32_t bit) {
1616
// Could have used function pointers instead of switch.

headers/bitpackingunaligned.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define BITPACKINGUNALIGNED
99
#include "common.h"
1010

11-
namespace FastPFor {
11+
namespace FastPForLib {
1212

1313
typedef uint8_t byte;
1414

headers/blockpacking.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "bitpackingaligned.h"
1515
#include "util.h"
1616

17-
namespace FastPFor {
17+
namespace FastPForLib {
1818

1919
/**
2020
* This is 32-bit *aligned* binary packing, designed from the

headers/codecfactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include "simdbinarypacking.h"
3232
#include "snappydelta.h"
3333

34-
namespace FastPFor {
34+
namespace FastPForLib {
3535

3636
typedef std::map<std::string, std::shared_ptr<IntegerCODEC> > CodecMap;
3737

headers/codecs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "util.h"
1313
#include "bitpackinghelpers.h"
1414

15-
namespace FastPFor {
15+
namespace FastPForLib {
1616

1717
class NotEnoughStorage: public std::runtime_error {
1818
public:

headers/compositecodec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "util.h"
1212
#include "codecs.h"
1313

14-
namespace FastPFor {
14+
namespace FastPForLib {
1515

1616
/**
1717
* This is a useful class for CODEC that only compress

0 commit comments

Comments
 (0)