Skip to content

Commit acf6e1f

Browse files
authored
Merge pull request #31 from ajarmusch/master
Version Testing
2 parents ff6afa1 + 0165194 commit acf6e1f

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

versiontest.F90

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ PROGRAM acc_shutdown
1616
PRINT*, "3.1"
1717
ELSE IF (_OPENACC == 202111) THEN
1818
PRINT*, "3.2"
19+
ELSE IF (_OPENACC == 202211) THEN
20+
PRINT*, "3.3"
1921
ELSE
2022
CALL EXIT(1)
2123
END IF

versiontest.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ int main(){
2626
else if (_OPENACC == 202111){
2727
printf("3.2");
2828
}
29+
else if (_OPENACC == 202211){
30+
printf("3.3");
31+
}
2932
else{
3033
return 1;
3134
}

versiontest.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ int main(){
2626
else if (_OPENACC == 202111){
2727
printf("3.2");
2828
}
29+
else if (_OPENACC == 202211){
30+
printf("3.3");
31+
}
2932
else{
3033
return 1;
3134
}

0 commit comments

Comments
 (0)