summaryrefslogtreecommitdiff
path: root/pocs/vdot
diff options
context:
space:
mode:
authorMichael Klimenko <mklimenko29@gmail.com>2024-01-27 15:25:55 +0100
committerGitHub <noreply@github.com>2024-01-27 15:25:55 +0100
commit35a2ee914308c85ab5cb576467381443ad23f0ac (patch)
tree72bd27fadddae5c8b82facf57373234822f574fc /pocs/vdot
parentec903c034131848da9222536ff18da07ec0882a0 (diff)
Remove unused data and add fixes (#5154)
* Remove unused data and add fixes * Add missing file * Address review comments * Replace the scope of vq allocation
Diffstat (limited to 'pocs/vdot')
-rw-r--r--pocs/vdot/vdot.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/pocs/vdot/vdot.cpp b/pocs/vdot/vdot.cpp
index e96372c4..73ffcd1c 100644
--- a/pocs/vdot/vdot.cpp
+++ b/pocs/vdot/vdot.cpp
@@ -243,7 +243,6 @@ int main(int argc, char** argv) {
if (useQ4_1) q41.resize(n4);
else q40.resize(n4);
std::vector<block_q8_0> q8(n8);
- std::vector<int64_t> H(16, 0);
double sumt = 0, sumt2 = 0, maxt = 0;
double sumqt = 0, sumqt2 = 0, maxqt = 0;
double sum = 0, sumq = 0, exactSum = 0;