mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-03 07:42:54 +00:00
23 lines
328 B
C
23 lines
328 B
C
/**
|
|
* This code is released under a BSD License.
|
|
*/
|
|
|
|
#ifndef SIMDCOMP_H_
|
|
#define SIMDCOMP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "simdbitpacking.h"
|
|
#include "simdcomputil.h"
|
|
#include "simdfor.h"
|
|
#include "simdintegratedbitpacking.h"
|
|
#include "avxbitpacking.h"
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif
|