Home
last modified time | relevance | path

Searched refs:afterScatter (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/polly/unittests/Isl/
DIslTest.cpp548 TEST(ISLTools, afterScatter) { in TEST() argument
554 afterScatter(MAP("{ [] -> [0] }"), false)); in TEST()
556 afterScatter(MAP("{ [] -> [0] }"), true)); in TEST()
560 afterScatter(UMAP("{ A[] -> [0]; B[] -> [0] }"), false)); in TEST()
562 afterScatter(UMAP("{ A[] -> [0]; B[] -> [0] }"), true)); in TEST()
566 afterScatter(UMAP("{ [] -> [0, 0] }"), false)); in TEST()
568 afterScatter(UMAP("{ [] -> [0, 0] }"), true)); in TEST()
572 afterScatter(UMAP("{ [i] -> [i] }"), false)); in TEST()
574 afterScatter(UMAP("{ [i] -> [i] }"), true)); in TEST()
578 afterScatter(UMAP("[i] -> { [] -> [i] }"), false)); in TEST()
[all …]
/external/llvm-project/polly/include/polly/Support/
DISLTools.h97 isl::map afterScatter(isl::map Map, bool Strict);
100 isl::union_map afterScatter(const isl::union_map &UMap, bool Strict);
/external/llvm-project/polly/lib/Support/
DISLTools.cpp102 isl::map polly::afterScatter(isl::map Map, bool Strict) { in afterScatter() function in polly
109 isl::union_map polly::afterScatter(const isl::union_map &UMap, bool Strict) { in afterScatter() function in polly
112 isl::map After = afterScatter(Map, Strict); in afterScatter()
120 isl::map AfterFrom = afterScatter(From, !InclFrom); in betweenScatter()
128 isl::union_map AfterFrom = afterScatter(From, !InclFrom); in betweenScatter()