This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-vta.git


The following commit(s) were added to refs/heads/main by this push:
     new 9a23bc8  config: small spelling fix (#19)
9a23bc8 is described below

commit 9a23bc8adf6fd41b53759d564a153e0f0947cdc2
Author: Daniel Steger <[email protected]>
AuthorDate: Fri Dec 4 07:23:33 2020 -0800

    config: small spelling fix (#19)
---
 config/pkg_config.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/pkg_config.py b/config/pkg_config.py
index 9c57706..2fe1c4c 100644
--- a/config/pkg_config.py
+++ b/config/pkg_config.py
@@ -190,9 +190,9 @@ class PkgConfig(object):
         self.fetch_insn_addr_offset = self.fetch_insn_count_offset + 0x08
         self.load_inp_addr_offset = 0x10
         self.load_wgt_addr_offset = self.load_inp_addr_offset + 0x08
-        self.compute_done_wr_offet = 0x10
-        self.compute_done_rd_offet = self.compute_done_wr_offet + 0x08
-        self.compute_uop_addr_offset = self.compute_done_rd_offet + 0x08
+        self.compute_done_wr_offset = 0x10
+        self.compute_done_rd_offset = self.compute_done_wr_offset + 0x08
+        self.compute_uop_addr_offset = self.compute_done_rd_offset + 0x08
         self.compute_bias_addr_offset = self.compute_uop_addr_offset + 0x08
         self.store_out_addr_offset = 0x10
 
@@ -266,9 +266,9 @@ class PkgConfig(object):
         self.macro_defs.append("-DVTA_LOAD_WGT_ADDR_OFFSET=%s" % \
                                (self.load_wgt_addr_offset))
         self.macro_defs.append("-DVTA_COMPUTE_DONE_WR_OFFSET=%s" % \
-                               (self.compute_done_wr_offet))
+                               (self.compute_done_wr_offset))
         self.macro_defs.append("-DVTA_COMPUTE_DONE_RD_OFFSET=%s" % \
-                               (self.compute_done_rd_offet))
+                               (self.compute_done_rd_offset))
         self.macro_defs.append("-DVTA_COMPUTE_UOP_ADDR_OFFSET=%s" % \
                                (self.compute_uop_addr_offset))
         self.macro_defs.append("-DVTA_COMPUTE_BIAS_ADDR_OFFSET=%s" % \

Reply via email to