forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[flang][OpenMP] Parse AFFINITY clause, lowering not supported yet (ll…
…vm#113485) Implement parsing of the AFFINITY clause on TASK construct, conversion from the parser class to omp::Clause. Lowering to HLFIR is unsupported, a TODO message is displayed.
- Loading branch information
Showing
10 changed files
with
129 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
!RUN: %not_todo_cmd bbc -emit-hlfir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s | ||
!RUN: %not_todo_cmd %flang_fc1 -emit-hlfir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s | ||
|
||
!CHECK: not yet implemented: Unhandled clause AFFINITY in TASK construct | ||
subroutine f00(x) | ||
integer :: x(10) | ||
!$omp task affinity(x) | ||
x = x + 1 | ||
!$omp end task | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
!RUN: %flang_fc1 -fdebug-unparse -fopenmp -fopenmp-version=50 %s | FileCheck --ignore-case --check-prefix="UNPARSE" %s | ||
!RUN: %flang_fc1 -fdebug-dump-parse-tree -fopenmp -fopenmp-version=50 %s | FileCheck --check-prefix="PARSE-TREE" %s | ||
|
||
subroutine f00(x) | ||
integer :: x(10) | ||
!$omp task affinity(x) | ||
x = x + 1 | ||
!$omp end task | ||
end | ||
|
||
!UNPARSE: SUBROUTINE f00 (x) | ||
!UNPARSE: INTEGER x(10_4) | ||
!UNPARSE: !$OMP TASK AFFINITY(x) | ||
!UNPARSE: x=x+1_4 | ||
!UNPARSE: !$OMP END TASK | ||
!UNPARSE: END SUBROUTINE | ||
|
||
!PARSE-TREE: OmpBeginBlockDirective | ||
!PARSE-TREE: | OmpBlockDirective -> llvm::omp::Directive = task | ||
!PARSE-TREE: | OmpClauseList -> OmpClause -> Affinity -> OmpAffinityClause | ||
!PARSE-TREE: | | OmpObjectList -> OmpObject -> Designator -> DataRef -> Name = 'x' | ||
|
||
subroutine f01(x) | ||
integer :: x(10) | ||
!$omp task affinity(x(1), x(3)) | ||
x = x + 1 | ||
!$omp end task | ||
end | ||
|
||
!UNPARSE: SUBROUTINE f01 (x) | ||
!UNPARSE: INTEGER x(10_4) | ||
!UNPARSE: !$OMP TASK AFFINITY(x(1_4),x(3_4)) | ||
!UNPARSE: x=x+1_4 | ||
!UNPARSE: !$OMP END TASK | ||
!UNPARSE: END SUBROUTINE | ||
|
||
!PARSE-TREE: OmpBeginBlockDirective | ||
!PARSE-TREE: | OmpBlockDirective -> llvm::omp::Directive = task | ||
!PARSE-TREE: | OmpClauseList -> OmpClause -> Affinity -> OmpAffinityClause | ||
!PARSE-TREE: | | OmpObjectList -> OmpObject -> Designator -> DataRef -> ArrayElement | ||
!PARSE-TREE: | | | DataRef -> Name = 'x' | ||
!PARSE-TREE: | | | SectionSubscript -> Integer -> Expr = '1_4' | ||
!PARSE-TREE: | | | | LiteralConstant -> IntLiteralConstant = '1' | ||
!PARSE-TREE: | | OmpObject -> Designator -> DataRef -> ArrayElement | ||
!PARSE-TREE: | | | DataRef -> Name = 'x' | ||
!PARSE-TREE: | | | SectionSubscript -> Integer -> Expr = '3_4' | ||
!PARSE-TREE: | | | | LiteralConstant -> IntLiteralConstant = '3' | ||
|
||
subroutine f02(x) | ||
integer :: x(10) | ||
!$omp task affinity(iterator(i = 1:3): x(i)) | ||
x = x + 1 | ||
!$omp end task | ||
end | ||
|
||
!UNPARSE: SUBROUTINE f02 (x) | ||
!UNPARSE: INTEGER x(10_4) | ||
!UNPARSE: !$OMP TASK AFFINITY(ITERATOR(INTEGER i = 1_4:3_4):x(i)) | ||
!UNPARSE: x=x+1_4 | ||
!UNPARSE: !$OMP END TASK | ||
!UNPARSE: END SUBROUTINE | ||
|
||
!PARSE-TREE: OmpBeginBlockDirective | ||
!PARSE-TREE: | OmpBlockDirective -> llvm::omp::Directive = task | ||
!PARSE-TREE: | OmpClauseList -> OmpClause -> Affinity -> OmpAffinityClause | ||
!PARSE-TREE: | | OmpIteratorModifier -> OmpIteratorSpecifier | ||
!PARSE-TREE: | | | TypeDeclarationStmt | ||
!PARSE-TREE: | | | | DeclarationTypeSpec -> IntrinsicTypeSpec -> IntegerTypeSpec -> | ||
!PARSE-TREE: | | | | EntityDecl | ||
!PARSE-TREE: | | | | | Name = 'i' | ||
!PARSE-TREE: | | | SubscriptTriplet | ||
!PARSE-TREE: | | | | Scalar -> Integer -> Expr = '1_4' | ||
!PARSE-TREE: | | | | | LiteralConstant -> IntLiteralConstant = '1' | ||
!PARSE-TREE: | | | | Scalar -> Integer -> Expr = '3_4' | ||
!PARSE-TREE: | | | | | LiteralConstant -> IntLiteralConstant = '3' | ||
!PARSE-TREE: | | OmpObjectList -> OmpObject -> Designator -> DataRef -> ArrayElement | ||
!PARSE-TREE: | | | DataRef -> Name = 'x' | ||
!PARSE-TREE: | | | SectionSubscript -> Integer -> Expr = 'i' | ||
!PARSE-TREE: | | | | Designator -> DataRef -> Name = 'i' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=45 | ||
|
||
subroutine f00(x) | ||
integer :: x(10) | ||
!ERROR: AFFINITY clause is not allowed on directive TASK in OpenMP v4.5, try -fopenmp-version=50 | ||
!$omp task affinity(x) | ||
x = x + 1 | ||
!$omp end task | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters