1 #ifndef CBD_H
2 #define CBD_H
3 
4 #include <stdint.h>
5 #include <immintrin.h>
6 #include "params.h"
7 #include "poly.h"
8 
9 #define poly_cbd_eta1 KYBER_NAMESPACE(poly_cbd_eta1)
10 void poly_cbd_eta1(poly *r, const __m256i buf[KYBER_ETA1*KYBER_N/128+1]);
11 
12 #define poly_cbd_eta2 KYBER_NAMESPACE(poly_cbd_eta2)
13 void poly_cbd_eta2(poly *r, const __m256i buf[KYBER_ETA2*KYBER_N/128]);
14 
15 #endif
16