Skip to content

Commit

Permalink
affine_transform_non_ssse3()と書いてしまっている箇所があったのを修正した。
Browse files Browse the repository at this point in the history
  • Loading branch information
KazApps committed Dec 4, 2024
1 parent d4490e5 commit 5e1935a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/eval/nnue/layers/affine_transform.h
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ class AffineTransform {

#else
// Use dense implementation for the other architectures.
affine_transform_non_ssse3<kInputDimensions, kPaddedInputDimensions, kOutputDimensions>(
affine_transform_unaligned<kInputDimensions, kPaddedInputDimensions, kOutputDimensions>(
output, weights_, biases_, input);
#endif

Expand Down

0 comments on commit 5e1935a

Please sign in to comment.