diff options
| author | Ellie Hermaszewska <ellieh@nvidia.com> | 2023-08-01 12:43:51 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-01 12:43:51 +0800 |
| commit | c34a7b6627d4c07531daf7d99dceaf7f89bd1c0a (patch) | |
| tree | 36eef7ee055c3706bce32493f47fddb5c0af3a4f /tests/cpu-program | |
| parent | 5349241098076bead63f638daf2e4b9a9cb3e496 (diff) | |
Generalize collectInductionValues (#3031)
* Generalize collectInductionValues
* Support affine transformations of loop index as induction variables
* Test for generalized induction value collection
* Neaten inductive variable finding
* Store the type of implication success when finding inductive variables
* Test that loop induction finding does not alway succeed
* Support chains of additions and branches of additions in induction variable finding
* Use c++17 for downstream compilers
Diffstat (limited to 'tests/cpu-program')
| -rw-r--r-- | tests/cpu-program/cpu-hello-world.slang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpu-program/cpu-hello-world.slang b/tests/cpu-program/cpu-hello-world.slang index f91e354bc..f1285f889 100644 --- a/tests/cpu-program/cpu-hello-world.slang +++ b/tests/cpu-program/cpu-hello-world.slang @@ -4,4 +4,4 @@ public __extern_cpp int main() { printf("Hello World.\n"); return 0; -}
\ No newline at end of file +} |
