summaryrefslogtreecommitdiff
path: root/clang/test/OpenMP/parallel_master_taskloop_ast_print.cpp
AgeCommit message (Collapse)Author
2024-05-04[test] %clang_cc1: remove redundant actionsFangrui Song
2020-08-27[OpenMP] Ensure testing for versions 4.5 and default - Part 3Saiyedul Islam
This third patch in the series removes version 5.0 string from test cases making them check for default version. It also add test cases for version 4.5. Reviewed By: ABataev Differential Revision: https://reviews.llvm.org/D85214
2020-04-30[OPENMP50]Support 'task' modifier in reduction clauses.Alexey Bataev
Summary: Added basic support for 'task' modifier in the reduction clauses in non-simd parallel and worksharing constructs. Reviewers: jdoerfert Subscribers: yaxunl, guansong, cfe-commits, caomhin Tags: #clang Differential Revision: https://reviews.llvm.org/D78738
2020-02-13[OPENMP50]Add cancellation support in taskloop-based directives.Alexey Bataev
According to OpenMP 5.0, cancel and cancellation point constructs are supported in taskloop directive. Added support for cancellation in taskloop, master taskloop and parallel master taskloop.
2019-10-15[OPENMP]Allow final clause in combined task-based directives.Alexey Bataev
The condition of the final clause must be captured in the combined task-based directives, like 'parallel master taskloop' directive. llvm-svn: 374942
2019-10-14[OPNEMP]Allow num_tasks clause in combined task-based directives.Alexey Bataev
The expression of the num_tasks clause must be captured in the combined task-based directives, like 'parallel master taskloop' directive. llvm-svn: 374819
2019-10-14[OPENMP50]Add support for 'parallel master taskloop' construct.Alexey Bataev
Added parsing/sema/codegen support for 'parallel master taskloop' constructs. Some of the clauses, like 'grainsize', 'num_tasks', 'final' and 'priority' are not supported in full, only constant expressions can be used currently in these clauses. llvm-svn: 374791