Skip to content

Commit

Permalink
WIP: checkpointing grammar experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravenwater committed Jan 15, 2017
1 parent ff1f378 commit b971b5f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
14 changes: 14 additions & 0 deletions grammars/tmp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
input_sa_statement
: domain_flow_var_lhs '=' ram_var ';'
;

output_sa_statement
: ram_var '=' domain_flow_var_rhs ';'
;


ram_var
: Identifier '[' index_space_dimension_list ']'
;


1 change: 0 additions & 1 deletion kernels/matrix-power.dfa
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ kernel<T> gemm (domain<T> a, b, c) {
b: b[i,j-1,k];
c: mac(a[i-1,j,k], b[i,j-1,k], c[i,j,k-1]);
}

}

int main() {
Expand Down

0 comments on commit b971b5f

Please sign in to comment.