Skip to content

Commit

Permalink
Lab vectorization 2: back to 32 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
simveit committed Dec 19, 2024
1 parent bd6d1ec commit d18afd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labs/core_bound/vectorization_2/solution.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "solution.hpp"

uint16_t checksum(const Blob &blob) {
uint64_t acc = 0;
uint32_t acc = 0;
for (auto value : blob) {
acc += value;
}
Expand Down

0 comments on commit d18afd0

Please sign in to comment.