From e40da05e55ac570c68704ce55c73f80d4d51106a Mon Sep 17 00:00:00 2001 From: Jiawei Shao Date: Sat, 29 Jun 2024 08:57:41 +0800 Subject: [PATCH] Replace `accumulation` with `accumulator` --- include/tvm/tir/builtin.h | 2 +- python/tvm/tir/op.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tvm/tir/builtin.h b/include/tvm/tir/builtin.h index 49e44a69a4b0..ea2d07903e71 100644 --- a/include/tvm/tir/builtin.h +++ b/include/tvm/tir/builtin.h @@ -817,7 +817,7 @@ TVM_DLL const Op& vectorlow(); TVM_DLL const Op& vectorcombine(); /*! - * \brief Dot product of two int8x4 vectors and add an optional accumulation + * \brief Dot product of two int8x4 vectors and add an optional accumulator */ TVM_DLL const Op& dp4a(); diff --git a/python/tvm/tir/op.py b/python/tvm/tir/op.py index 165655c6d5ba..0bc299e403c5 100644 --- a/python/tvm/tir/op.py +++ b/python/tvm/tir/op.py @@ -1814,7 +1814,7 @@ def vectorcombine(dtype, vec1, vec2): def dp4a(vec1, vec2, acc=0): - """Dot product of two int8x4 vectors and add an optional accumulation + """Dot product of two int8x4 vectors and add an optional accumulator Parameters ----------