/external/bcc/tools/ |
D | offcputime_example.txt | 18 schedule 34 schedule 42 schedule 57 schedule 80 schedule 96 schedule 106 schedule 114 schedule 129 schedule 144 schedule [all …]
|
/external/llvm-project/polly/lib/External/isl/ |
D | isl_schedule.c | 19 #include <isl/schedule.h> 27 /* Return a schedule encapsulating the given schedule tree. 29 * We currently only allow schedule trees with a domain or extension as root. 32 * used to represent leaves in the constructed schedule. 35 * these leaves to ensure that they are only used while the schedule 42 isl_schedule *schedule; in isl_schedule_from_schedule_tree() local 50 "root of schedule tree should be a domain or extension", in isl_schedule_from_schedule_tree() 53 schedule = isl_calloc_type(ctx, isl_schedule); in isl_schedule_from_schedule_tree() 54 if (!schedule) in isl_schedule_from_schedule_tree() 57 schedule->ref = 1; in isl_schedule_from_schedule_tree() [all …]
|
D | codegen.c | 11 * the domain of a given schedule in the order specified by 12 * the schedule tree or by their image(s) in the schedule map. 14 * The input consists of either a schedule tree or 16 * - a schedule map 61 /* Set the "name" option for the entire schedule domain. 64 __isl_keep isl_union_map *schedule, const char *name) in set_universe() argument 72 domain = isl_union_map_range(isl_union_map_copy(schedule)); in set_universe() 88 __isl_keep isl_union_map *schedule) in set_options() argument 94 ctx = isl_union_map_get_ctx(schedule); in set_options() 103 opt = set_universe(opt, schedule, "separate"); in set_options() [all …]
|
/external/llvm-project/clang/test/OpenMP/ |
D | for_schedule_messages.cpp | 19 #pragma omp for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 21 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 23 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 25 …#pragma omp for schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '(… in tmain() 27 …schedule (monotonic // expected-error {{expected ')'}} expected-error {{expected 'static', 'dynami… in tmain() 29 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 31 …schedule (nonmonotonic, // expected-error {{expected ')'}} expected-error {{expected 'simd' in Ope… in tmain() 33 …schedule (simd: // expected-error {{expected ')'}} expected-error {{expected 'static', 'dynamic', … in tmain() 35 …schedule (monotonic, auto // expected-error {{expected ')'}} expected-warning {{missing ':' after … in tmain() 37 …schedule (nonmonotonic: auto, // expected-error {{expected ')'}} omp45-error {{'nonmonotonic' modi… in tmain() [all …]
|
D | parallel_for_schedule_messages.cpp | 17 #pragma omp parallel for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 19 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 21 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 23 …#pragma omp parallel for schedule (auto // expected-error {{expected ')'}} expected-note {{to matc… in tmain() 25 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 27 …#pragma omp parallel for schedule (auto, // expected-error {{expected ')'}} expected-note {{to ma… in tmain() 29 …#pragma omp parallel for schedule (runtime, 3) // expected-error {{expected ')'}} expected-note {… in tmain() 32 #pragma omp parallel for schedule (guided argc in tmain() 34 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 35 …#pragma omp parallel for schedule (static, ST // expected-error {{expected ')'}} expected-note {{t… in tmain() [all …]
|
D | schedule_codegen.cpp | 20 #pragma omp for schedule(static) in main() 25 #pragma omp for simd schedule(static) in main() 30 #pragma omp for schedule(static, 2) in main() 35 #pragma omp for simd schedule(static, 2) in main() 39 #pragma omp for schedule(auto) in main() 43 #pragma omp for simd schedule(auto) in main() 47 #pragma omp for schedule(runtime) in main() 51 #pragma omp for simd schedule(runtime) in main() 55 #pragma omp for schedule(guided) in main() 59 #pragma omp for simd schedule(guided) in main() [all …]
|
D | for_simd_schedule_messages.cpp | 17 #pragma omp for simd schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 19 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 21 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 23 …#pragma omp for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to match th… in tmain() 25 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 27 …#pragma omp for simd schedule (auto, // expected-error {{expected ')'}} expected-note {{to match … in tmain() 29 …#pragma omp for simd schedule (runtime, 3) // expected-error {{expected ')'}} expected-note {{to … in tmain() 32 #pragma omp for simd schedule (guided argc in tmain() 34 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 35 …#pragma omp for simd schedule (static, ST // expected-error {{expected ')'}} expected-note {{to ma… in tmain() [all …]
|
D | target_teams_distribute_parallel_for_schedule_messages.cpp | 17 // expected-error@+1 {{expected '(' after 'schedule'}} in tmain() 18 #pragma omp target teams distribute parallel for schedule in tmain() 21 …to', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error… in tmain() 22 #pragma omp target teams distribute parallel for schedule ( in tmain() 25 …', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} in tmain() 26 #pragma omp target teams distribute parallel for schedule () in tmain() 30 #pragma omp target teams distribute parallel for schedule (auto in tmain() 33 …to', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error… in tmain() 34 #pragma omp target teams distribute parallel for schedule (auto_dynamic in tmain() 38 #pragma omp target teams distribute parallel for schedule (auto, in tmain() [all …]
|
D | target_parallel_for_schedule_messages.cpp | 17 #pragma omp target parallel for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 19 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 21 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 23 …#pragma omp target parallel for schedule (auto // expected-error {{expected ')'}} expected-note {{… in tmain() 25 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 27 …#pragma omp target parallel for schedule (auto, // expected-error {{expected ')'}} expected-note … in tmain() 29 …#pragma omp target parallel for schedule (runtime, 3) // expected-error {{expected ')'}} expected… in tmain() 32 #pragma omp target parallel for schedule (guided argc in tmain() 34 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 35 …#pragma omp target parallel for schedule (static, ST // expected-error {{expected ')'}} expected-n… in tmain() [all …]
|
D | parallel_for_simd_schedule_messages.cpp | 17 #pragma omp parallel for simd schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 19 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 21 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 23 …#pragma omp parallel for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to… in tmain() 25 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 27 …#pragma omp parallel for simd schedule (auto, // expected-error {{expected ')'}} expected-note {{… in tmain() 29 …#pragma omp parallel for simd schedule (runtime, 3) // expected-error {{expected ')'}} expected-n… in tmain() 32 #pragma omp parallel for simd schedule (guided argc in tmain() 34 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 35 …#pragma omp parallel for simd schedule (static, ST // expected-error {{expected ')'}} expected-not… in tmain() [all …]
|
D | target_parallel_for_simd_schedule_messages.cpp | 17 #pragma omp target parallel for simd schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 19 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 21 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 23 …#pragma omp target parallel for simd schedule (auto // expected-error {{expected ')'}} expected-no… in tmain() 25 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 27 …#pragma omp target parallel for simd schedule (auto, // expected-error {{expected ')'}} expected-… in tmain() 29 …#pragma omp target parallel for simd schedule (runtime, 3) // expected-error {{expected ')'}} exp… in tmain() 32 #pragma omp target parallel for simd schedule (guided argc in tmain() 34 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 35 …#pragma omp target parallel for simd schedule (static, ST // expected-error {{expected ')'}} expec… in tmain() [all …]
|
D | distribute_parallel_for_schedule_messages.cpp | 19 #pragma omp distribute parallel for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 23 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 27 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 31 #pragma omp distribute parallel for schedule (auto // expected-error {{expected ')'}} expected-note… in tmain() 35 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 39 #pragma omp distribute parallel for schedule (auto, // expected-error {{expected ')'}} expected-no… in tmain() 43 #pragma omp distribute parallel for schedule (runtime, 3) // expected-error {{expected ')'}} expec… in tmain() 48 #pragma omp distribute parallel for schedule (guided argc in tmain() 50 // expected-error@+3 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 53 #pragma omp distribute parallel for schedule (static, ST // expected-error {{expected ')'}} expecte… in tmain() [all …]
|
D | distribute_parallel_for_simd_schedule_messages.cpp | 19 #pragma omp distribute parallel for simd schedule // expected-error {{expected '(' after 'schedule'… in tmain() 23 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 27 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 31 #pragma omp distribute parallel for simd schedule (auto // expected-error {{expected ')'}} expected… in tmain() 35 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 39 #pragma omp distribute parallel for simd schedule (auto, // expected-error {{expected ')'}} expect… in tmain() 43 #pragma omp distribute parallel for simd schedule (runtime, 3) // expected-error {{expected ')'}} … in tmain() 48 #pragma omp distribute parallel for simd schedule (guided argc in tmain() 50 // expected-error@+3 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 53 #pragma omp distribute parallel for simd schedule (static, ST // expected-error {{expected ')'}} ex… in tmain() [all …]
|
D | target_teams_distribute_parallel_for_simd_schedule_messages.cpp | 17 // expected-error@+1 {{expected '(' after 'schedule'}} in tmain() 18 #pragma omp target teams distribute parallel for simd schedule in tmain() 21 …to', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error… in tmain() 22 #pragma omp target teams distribute parallel for simd schedule ( in tmain() 25 …', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} in tmain() 26 #pragma omp target teams distribute parallel for simd schedule () in tmain() 30 #pragma omp target teams distribute parallel for simd schedule (auto in tmain() 33 …to', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error… in tmain() 34 #pragma omp target teams distribute parallel for simd schedule (auto_dynamic in tmain() 38 #pragma omp target teams distribute parallel for simd schedule (auto, in tmain() [all …]
|
/external/clang/test/OpenMP/ |
D | for_schedule_messages.cpp | 14 #pragma omp for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 16 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 18 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 20 …#pragma omp for schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '(… in tmain() 22 …schedule (monotonic // expected-error {{expected ')'}} expected-error {{expected 'static', 'dynami… in tmain() 24 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 26 …schedule (nonmonotonic, // expected-error {{expected ')'}} expected-error {{expected 'simd' in Ope… in tmain() 28 …schedule (simd: // expected-error {{expected ')'}} expected-error {{expected 'static', 'dynamic', … in tmain() 30 …schedule (monotonic, auto // expected-error {{expected ')'}} expected-warning {{missing ':' after … in tmain() 32 …schedule (nonmonotonic: auto, // expected-error {{expected ')'}} expected-error {{'nonmonotonic' m… in tmain() [all …]
|
D | parallel_for_simd_schedule_messages.cpp | 14 #pragma omp parallel for simd schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 16 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 18 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 20 …#pragma omp parallel for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to… in tmain() 22 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 24 …#pragma omp parallel for simd schedule (auto, // expected-error {{expected ')'}} expected-note {{… in tmain() 26 …#pragma omp parallel for simd schedule (runtime, 3) // expected-error {{expected ')'}} expected-n… in tmain() 29 #pragma omp parallel for simd schedule (guided argc in tmain() 31 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 32 …#pragma omp parallel for simd schedule (static, ST // expected-error {{expected ')'}} expected-not… in tmain() [all …]
|
D | target_parallel_for_schedule_messages.cpp | 14 #pragma omp target parallel for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 16 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 18 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 20 …#pragma omp target parallel for schedule (auto // expected-error {{expected ')'}} expected-note {{… in tmain() 22 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 24 …#pragma omp target parallel for schedule (auto, // expected-error {{expected ')'}} expected-note … in tmain() 26 …#pragma omp target parallel for schedule (runtime, 3) // expected-error {{expected ')'}} expected… in tmain() 29 #pragma omp target parallel for schedule (guided argc in tmain() 31 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 32 …#pragma omp target parallel for schedule (static, ST // expected-error {{expected ')'}} expected-n… in tmain() [all …]
|
D | target_parallel_for_simd_schedule_messages.cpp | 14 #pragma omp target parallel for simd schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 16 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 18 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 20 …#pragma omp target parallel for simd schedule (auto // expected-error {{expected ')'}} expected-no… in tmain() 22 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 24 …#pragma omp target parallel for simd schedule (auto, // expected-error {{expected ')'}} expected-… in tmain() 26 …#pragma omp target parallel for simd schedule (runtime, 3) // expected-error {{expected ')'}} exp… in tmain() 29 #pragma omp target parallel for simd schedule (guided argc in tmain() 31 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 32 …#pragma omp target parallel for simd schedule (static, ST // expected-error {{expected ')'}} expec… in tmain() [all …]
|
D | parallel_for_schedule_messages.cpp | 14 #pragma omp parallel for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 16 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 18 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 20 …#pragma omp parallel for schedule (auto // expected-error {{expected ')'}} expected-note {{to matc… in tmain() 22 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 24 …#pragma omp parallel for schedule (auto, // expected-error {{expected ')'}} expected-note {{to ma… in tmain() 26 …#pragma omp parallel for schedule (runtime, 3) // expected-error {{expected ')'}} expected-note {… in tmain() 29 #pragma omp parallel for schedule (guided argc in tmain() 31 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 32 …#pragma omp parallel for schedule (static, ST // expected-error {{expected ')'}} expected-note {{t… in tmain() [all …]
|
D | for_simd_schedule_messages.cpp | 14 #pragma omp for simd schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 16 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 18 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 20 …#pragma omp for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to match th… in tmain() 22 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 24 …#pragma omp for simd schedule (auto, // expected-error {{expected ')'}} expected-note {{to match … in tmain() 26 …#pragma omp for simd schedule (runtime, 3) // expected-error {{expected ')'}} expected-note {{to … in tmain() 29 #pragma omp for simd schedule (guided argc in tmain() 31 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 32 …#pragma omp for simd schedule (static, ST // expected-error {{expected ')'}} expected-note {{to ma… in tmain() [all …]
|
D | schedule_codegen.cpp | 17 #pragma omp for schedule(static) in main() 22 #pragma omp for simd schedule(static) in main() 27 #pragma omp for schedule(static, 2) in main() 32 #pragma omp for simd schedule(static, 2) in main() 36 #pragma omp for schedule(auto) in main() 40 #pragma omp for simd schedule(auto) in main() 44 #pragma omp for schedule(runtime) in main() 48 #pragma omp for simd schedule(runtime) in main() 52 #pragma omp for schedule(guided) in main() 56 #pragma omp for simd schedule(guided) in main() [all …]
|
D | distribute_parallel_for_schedule_messages.cpp | 16 #pragma omp distribute parallel for schedule // expected-error {{expected '(' after 'schedule'}} in tmain() 20 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 24 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 28 #pragma omp distribute parallel for schedule (auto // expected-error {{expected ')'}} expected-note… in tmain() 32 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 36 #pragma omp distribute parallel for schedule (auto, // expected-error {{expected ')'}} expected-no… in tmain() 40 #pragma omp distribute parallel for schedule (runtime, 3) // expected-error {{expected ')'}} expec… in tmain() 45 #pragma omp distribute parallel for schedule (guided argc in tmain() 47 // expected-error@+3 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 50 #pragma omp distribute parallel for schedule (static, ST // expected-error {{expected ')'}} expecte… in tmain() [all …]
|
D | distribute_parallel_for_simd_schedule_messages.cpp | 16 #pragma omp distribute parallel for simd schedule // expected-error {{expected '(' after 'schedule'… in tmain() 20 …schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoton… in tmain() 24 …schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monoto… in tmain() 28 #pragma omp distribute parallel for simd schedule (auto // expected-error {{expected ')'}} expected… in tmain() 32 …schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtim… in tmain() 36 #pragma omp distribute parallel for simd schedule (auto, // expected-error {{expected ')'}} expect… in tmain() 40 #pragma omp distribute parallel for simd schedule (runtime, 3) // expected-error {{expected ')'}} … in tmain() 45 #pragma omp distribute parallel for simd schedule (guided argc in tmain() 47 // expected-error@+3 2 {{argument to 'schedule' clause must be a strictly positive integer value}} in tmain() 50 #pragma omp distribute parallel for simd schedule (static, ST // expected-error {{expected ')'}} ex… in tmain() [all …]
|
/external/rust/crates/async-task/tests/ |
D | basic.rs | 44 // Creates a schedule function with event counters. 46 // Usage: `schedule!(s, SCHED, DROP)` 48 // The schedule function `s` does nothing. 51 macro_rules! schedule { macro 81 schedule!(s, SCHEDULE, DROP_S); in drop_and_detach() 85 assert_eq!(SCHEDULE.load(Ordering::SeqCst), 0); in drop_and_detach() 91 assert_eq!(SCHEDULE.load(Ordering::SeqCst), 0); in drop_and_detach() 97 assert_eq!(SCHEDULE.load(Ordering::SeqCst), 0); in drop_and_detach() 105 schedule!(s, SCHEDULE, DROP_S); in detach_and_drop() 110 assert_eq!(SCHEDULE.load(Ordering::SeqCst), 0); in detach_and_drop() [all …]
|
/external/llvm-project/polly/lib/Transform/ |
D | ScheduleTreeTransform.cpp | 9 // Make changes to isl's schedule tree data structure. 23 /// various schedule tree analysis purposes. 59 llvm_unreachable("unimplemented schedule node type"); in visit() 110 /// Recursively visit all nodes of a schedule tree. 122 /// When visiting an entire schedule tree, start at its root node. 123 RetTy visit(const isl::schedule &Schedule, Args... args) { in visit() 124 return getDerived().visit(Schedule.get_root(), std::forward<Args>(args)...); in visit() 127 // Necessary to allow overload resolution with the added visit(isl::schedule) 141 /// Recursively visit all nodes of a schedule tree while allowing changes. 170 /// Rewrite a schedule tree by reconstructing it bottom-up. [all …]
|