From 19ef2a6bc1902fb6ef337139ce0ea572a8377672 Mon Sep 17 00:00:00 2001 From: George Bisbas Date: Fri, 15 Dec 2023 09:55:49 +0200 Subject: [PATCH] misc: Remove accidentally commited file (#1871) *Short paragraph summarizing the changes* --- Thank you for submitting a PR to xDSL! Make sure to follow the steps in the checklist below *before* you submit this PR! ## Checklist before you submit this PR: - [ ] If your PR is not ready for review, open it as a draft instead. - [ ] Make sure your PR title follows the [guidelines](https://github.com/xdslproject/xdsl/wiki/Tags-for-commit-messages-and-PR-titles) - [ ] Add some tags to categorize the PR, if able. - [ ] Request review from people you *know* have to sign off on these changes, you can leave it blank for now if you are not sure or don't have the rights to request reviews. - [ ] Tag people you wish to get feedback from (using @\), they will then sort out the reviewers. - [ ] Assign this PR to yourself, if able. - [ ] Delete this checklist and the line above it, only after you've completed all previous tasks. --- stencil1d.mlir | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 stencil1d.mlir diff --git a/stencil1d.mlir b/stencil1d.mlir deleted file mode 100644 index db006f4c53..0000000000 --- a/stencil1d.mlir +++ /dev/null @@ -1,19 +0,0 @@ -func.func @stencil(%ibuff : !stencil.field<[0,128]xf64>, %obuff : !stencil.field<[0,128]xf64>) { - %source = "stencil.load"(%ibuff) : (!stencil.field<[0,128]xf64>) - -> !stencil.temp - %out = "stencil.apply"(%source) ({ - ^bb(%arg : !stencil.temp): - %l = "stencil.access"(%arg) {"offset" = !stencil.index<-1>} : (!stencil.temp) -> f64 - %c = "stencil.access"(%arg) {"offset" = !stencil.index<0>} : (!stencil.temp) -> f64 - %r = "stencil.access"(%arg) {"offset" = !stencil.index<1>} : (!stencil.temp) -> f64 - %2 = arith.constant -2.0 : f64 - %c2 = arith.mulf %c, %2 : f64 - %s1 = arith.addf %l, %r : f64 - %v = arith.addf %s1, %c2 : f64 - // %v = %l + %r - 2.0 * %c - "stencil.return"(%v) : (f64) -> () - }) : (!stencil.temp) -> !stencil.temp - - "stencil.store"(%out, %obuff) {"lb" = #stencil.index<1>, "ub" = #stencil.index<127>} : (!stencil.temp, !stencil.field<[0,128]xf64>) -> () - func.return -} \ No newline at end of file