1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
program elemental_11
implicit none
real, dimension(3) :: array_param, expected_ans
real :: scalar_param, epsilon = 1.0e-6
real, dimension(3) :: result_2param
real, dimension(3) :: result_3param
array_param = [ 1.0, 2.0, 3.0 ]
scalar_param = 1.0
print *, "Testing 2-parameter elemental function:"
result_2param = func2(array_param, array_param)
expected_ans = [ 2.0, 4.0, 6.0 ]
if ( size(result_2param) /= size(expected_ans) .or. .not. all(result_2param == expected_ans) ) then
error stop "Array, Array does not match to expected array"
end if
result_2param = func2(array_param, scalar_param)
expected_ans = [ 2.0, 3.0, 4.0 ]
if ( size(result_2param) /= size(expected_ans) .or. .not. all(result_2param == expected_ans) ) then
error stop "Array, Scalar does not match to expected array"
end if
result_2param = func2(scalar_param, array_param)
expected_ans = [ 2.0, 3.0, 4.0 ]
if ( size(result_2param) /= size(expected_ans) .or. .not. all(result_2param == expected_ans) ) then
error stop "Scalar, Array does not match to expected array"
end if
result_2param = func2(scalar_param, scalar_param)
expected_ans = [ 2.0, 0.0, 0.0 ]
if (abs(result_2param(1) - expected_ans(1)) > epsilon) then
error stop "Scalar, Scalar does not match 2.0"
end if
print *, "\nTesting 3-parameter elemental function:"
result_3param = func3(array_param, array_param, array_param)
expected_ans = [ 2.0, 6.0, 12.0 ]
if ( size(result_3param) /= size(expected_ans) .or. .not. all(result_3param == expected_ans) ) then
error stop "Array, Array, Array does not match to expected array"
end if
result_3param = func3(array_param, array_param, scalar_param)
expected_ans = [ 2.0, 5.0, 10.0 ]
if ( size(result_3param) /= size(expected_ans) .or. .not. all(result_3param == expected_ans) ) then
error stop "Array, Array, Scalar does not match to expected array"
end if
result_3param = func3(array_param, scalar_param, array_param)
expected_ans = [ 2.0, 4.0, 6.0 ]
if ( size(result_3param) /= size(expected_ans) .or. .not. all(result_3param == expected_ans) ) then
error stop "Array, Scalar, Array does not match to expected array"
end if
result_3param = func3(array_param, scalar_param, scalar_param)
expected_ans = [ 2.0, 3.0, 4.0 ]
if ( size(result_3param) /= size(expected_ans) .or. .not. all(result_3param == expected_ans) ) then
error stop "Array, Scalar, Scalar does not match to expected array"
end if
result_3param = func3(scalar_param, array_param, array_param)
expected_ans = [ 2.0, 4.0, 6.0 ]
if ( size(result_3param) /= size(expected_ans) .or. .not. all(result_3param == expected_ans) ) then
error stop "Scalar, Array, Array does not match to expected array"
end if
result_3param = func3(scalar_param, array_param, scalar_param)
expected_ans = [ 2.0, 3.0, 4.0 ]
if ( size(result_3param) /= size(expected_ans) .or. .not. all(result_3param == expected_ans) ) then
error stop "Scalar, Array, Scalar does not match to expected array"
end if
result_3param = func3(scalar_param, scalar_param, array_param)
expected_ans = [ 2.0, 3.0, 4.0 ]
if ( size(result_3param) /= size(expected_ans) .or. .not. all(result_3param == expected_ans) ) then
error stop "Scalar, Scalar, Array does not match to expected array"
end if
result_3param = func3(scalar_param, scalar_param, scalar_param)
expected_ans = [ 2.0, 0.0, 0.0 ]
if (abs(result_3param(1) - expected_ans(1)) > epsilon) then
error stop "Scalar, Scalar, Scalar does not match 2.0"
end if
print *, "All tests passed successfully"
contains
elemental function func2(x, y) result(res)
real, intent(in) :: x, y
real :: res
res = x + y
end function func2
elemental function func3(x, y, z) result(res)
real, intent(in) :: x, y, z
real :: res
res = x * y + z
end function func3
end program elemental_11
|