We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c402e9b commit 82156f2Copy full SHA for 82156f2
src/nnue/nnue_architecture.h
@@ -48,8 +48,9 @@ constexpr IndexType LayerStacks = 16;
48
// If vector instructions are enabled, we update and refresh the
49
// accumulator tile by tile such that each tile fits in the CPU's
50
// vector registers.
51
-static_assert(PSQTBuckets % 8 == 0,
52
- "Per feature PSQT values cannot be processed at granularity lower than 8 at a time.");
+static_assert(
+ PSQTBuckets % 16 == 0,
53
+ "Per feature PSQT values cannot be processed at granularity lower than 16 at a time.");
54
55
template<IndexType L1, int L2, int L3>
56
struct NetworkArchitecture {
0 commit comments