+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes
12 lines
139 B
C
12 lines
139 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#define USE_FLOAT
|
|
|
|
#ifdef USE_FLOAT
|
|
#define TYPE float
|
|
#else
|
|
#define TYPE int
|
|
#endif
|
|
|
|
#endif // COMMON_H
|