1 ! Copyright 2019 Wojciech Kosior
3 ! This is free and unencumbered software released into the public domain.
5 ! Anyone is free to copy, modify, publish, use, compile, sell, or
6 ! distribute this software, either in source code form or as a compiled
7 ! binary, for any purpose, commercial or non-commercial, and by any
10 ! In jurisdictions that recognize copyright laws, the author or authors
11 ! of this software dedicate any and all copyright interest in the
12 ! software to the public domain. We make this dedication for the benefit
13 ! of the public at large and to the detriment of our heirs and
14 ! successors. We intend this dedication to be an overt act of
15 ! relinquishment in perpetuity of all present and future rights to this
16 ! software under copyright law.
18 ! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 ! EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 ! MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 ! IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 ! OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 ! ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 ! OTHER DEALINGS IN THE SOFTWARE.
26 ! For more information, please refer to <http://unlicense.org/>
33 PRIVATE :: naivmull_4, naivmull_8, naivmull_16
36 procedure naivmull_4, naivmull_8, naivmull_16
37 END INTERFACE naivmull
41 FUNCTION naivmull_4(A, B) result(C)
43 real(kind=4), intent(in), dimension(1:,1:) :: A, B
44 real(kind=4), dimension(size(A, 1), size(B, 2)) :: C
53 C(i,j) = C(i,j) + A(i,k) * B(k,j)
58 END FUNCTION naivmull_4
60 FUNCTION naivmull_8(A, B) result(C)
62 real(kind=8), intent(in), dimension(1:,1:) :: A, B
63 real(kind=8), dimension(size(A, 1), size(B, 2)) :: C
72 C(i,j) = C(i,j) + A(i,k) * B(k,j)
77 END FUNCTION naivmull_8
79 FUNCTION naivmull_16(A, B) result(C)
81 real(kind=16), intent(in), dimension(1:,1:) :: A, B
82 real(kind=16), dimension(size(A, 1), size(B, 2)) :: C
91 C(i,j) = C(i,j) + A(i,k) * B(k,j)
96 END FUNCTION naivmull_16