[flang-commits] [PATCH] D113086: [flang] Add a semantics test for co_reduce

Damian Rouson via Phabricator via flang-commits flang-commits at lists.llvm.org
Thu Nov 4 16:05:45 PDT 2021


rouson updated this revision to Diff 384898.
rouson added a comment.

1. Add test to expectedly failed list.
2. Replaced non-ASCII characters.
3. Correct expected error message.
4. Update run directive to use test_errors.py.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D113086/new/

https://reviews.llvm.org/D113086

Files:
  flang/test/Semantics/collectives05.f90


Index: flang/test/Semantics/collectives05.f90
===================================================================
--- /dev/null
+++ flang/test/Semantics/collectives05.f90
@@ -0,0 +1,76 @@
+! RUN: %python %S/test_errors.py %s %flang_fc1
+! XFAIL: *
+! Check for semantic errors in co_reduce() subroutine calls
+! To Do: add co_reduce to the evaluation stage
+module test_co_reduce
+  implicit none
+
+contains
+
+  subroutine test
+
+    type foo_t
+    end type
+  
+    type(foo_t) foo
+    integer i, status
+    real vector(1)
+    real array(1,1,1, 1,1,1, 1,1,1, 1,1,1, 1,1,1)
+    character(len=1) string, message
+  
+    ! correct calls, should produce no errors
+    call co_reduce(i,      int_op)
+    call co_reduce(i,      int_op,                            status)
+    call co_reduce(i,      int_op,                            stat=status)
+    call co_reduce(i,      int_op,                                         errmsg=message)
+    call co_reduce(i,      int_op,                            stat=status, errmsg=message)
+    call co_reduce(i,      int_op,            result_image=1, stat=status, errmsg=message)
+    call co_reduce(i,      operation=int_op,  result_image=1, stat=status, errmsg=message)
+    call co_reduce(a=i,    operation=int_op,  result_image=1, stat=status, errmsg=message)
+
+    call co_reduce(array,  operation=real_op, result_image=1, stat=status, errmsg=message)
+    call co_reduce(vector, operation=real_op, result_image=1, stat=status, errmsg=message)
+    call co_reduce(string, operation=char_op, result_image=1, stat=status, errmsg=message)
+    call co_reduce(foo,    operation=left,    result_image=1, stat=status, errmsg=message)
+  
+    ! the error is seen as an incorrect type for the stat= argument
+    !ERROR: Actual argument for 'stat=' has bad type 'CHARACTER(KIND=1,LEN=1_8)'
+    call co_reduce(i, int_op)
+
+    ! the error is seen as too many arguments to the co_reduce() call
+    !ERROR: too many actual arguments for intrinsic 'co_reduce'
+    call co_reduce(i, int_op, result_image=1, stat=status, errmsg=message, 3.4)
+  
+    ! keyword argument with incorrect type
+    !ERROR: unknown keyword argument to intrinsic 'co_reduce'
+    call co_reduce(fake=3.4)
+  
+  contains
+
+    pure function left(lhs, rhs) result(lhs_op_rhs)
+      type(foo_t), intent(in)  :: lhs, rhs
+      type(foo_t) :: lhs_op_rhs
+      lhs_op_rhs = lhs
+    end function
+
+    pure function char_op(lhs, rhs) result(lhs_op_rhs)
+      character(len=1), intent(in)  :: lhs, rhs
+      character(len=1) :: lhs_op_rhs
+      lhs_op_rhs = min(lhs, rhs)
+    end function
+
+    pure function real_op(lhs, rhs) result(lhs_op_rhs)
+      real, intent(in) :: lhs, rhs
+      real :: lhs_op_rhs
+      lhs_op_rhs = lhs + rhs 
+    end function
+
+    pure function int_op(lhs, rhs) result(lhs_op_rhs)
+      integer, intent(in) :: lhs, rhs
+      integer :: lhs_op_rhs
+      lhs_op_rhs = lhs + rhs 
+    end function
+
+  end subroutine
+
+end module test_co_reduce


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113086.384898.patch
Type: text/x-patch
Size: 3008 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20211104/55597f32/attachment.bin>


More information about the flang-commits mailing list