Skip to content

Commit

Permalink
Replace accumulation with accumulator
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiawei-Shao committed Jun 29, 2024
1 parent 9843cc5 commit e40da05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/tvm/tir/builtin.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
2 changes: 1 addition & 1 deletion python/tvm/tir/op.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
----------
Expand Down

0 comments on commit e40da05

Please sign in to comment.