[PATCH] D70456: [Matrix] Add first set of matrix intrinsics and initial lowering pass.

LuoYuanke via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 7 19:01:34 PST 2019


LuoYuanke added inline comments.


================
Comment at: llvm/docs/LangRef.rst:14479
+column A and the beginning of column B. Given the start address of column A,
+the start address of column B is computed as A + <Rows> + %Stride.
+The result matrix is returned embedded in the result vector. This allows for
----------------
Is it more straight forward that the start address of column B is computed as A + %stride? Given a 3D array "tensor[9][8][7]", to load some rows of data from the array the %stride can be 8*7*2 instead of 8*7*2-7.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D70456/new/

https://reviews.llvm.org/D70456





More information about the llvm-commits mailing list