Skip to content

Commit

Permalink
examples/math/matmul: Remove dead code
Browse files Browse the repository at this point in the history
Signed-off-by: Ola Jeppsson <[email protected]>
  • Loading branch information
olajep committed Aug 3, 2016
1 parent a8eb920 commit 224a5fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions examples/math/matmul/matmul-dev-epiphany.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,8 @@ int main(int argc, char *argv[])
void init()
{
// Init core enumerations
me.coreID = e_get_coreid();
me.row = e_group_config.core_row;
me.col = e_group_config.core_col;
me.corenum = me.row * e_group_config.group_cols + me.col;
e_neighbor_id(E_PREV_CORE, E_ROW_WRAP, &me.rowh, &me.colh);
e_neighbor_id(E_PREV_CORE, E_COL_WRAP, &me.rowv, &me.colv);
e_neighbor_id(E_NEXT_CORE, E_GROUP_WRAP, &me.rown, &me.coln);
Expand Down
2 changes: 0 additions & 2 deletions examples/math/matmul/matmul.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@


typedef struct {
uint32_t coreID;
uint32_t corenum;
uint32_t row;
uint32_t col;
uint32_t rowh;
Expand Down

0 comments on commit 224a5fe

Please sign in to comment.