You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

macros_msa.h 8.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*******************************************************************************
  2. Copyright (c) 2016, The OpenBLAS Project
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are
  6. met:
  7. 1. Redistributions of source code must retain the above copyright
  8. notice, this list of conditions and the following disclaimer.
  9. 2. Redistributions in binary form must reproduce the above copyright
  10. notice, this list of conditions and the following disclaimer in
  11. the documentation and/or other materials provided with the
  12. distribution.
  13. 3. Neither the name of the OpenBLAS project nor the names of
  14. its contributors may be used to endorse or promote products
  15. derived from this software without specific prior written permission.
  16. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  17. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBLAS PROJECT OR CONTRIBUTORS BE
  20. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  22. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  23. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  24. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  25. USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. *******************************************************************************/
  27. #ifndef __MACROS_MSA_H__
  28. #define __MACROS_MSA_H__
  29. #include <msa.h>
  30. #define LD_W(RTYPE, psrc) *((RTYPE *)(psrc))
  31. #define LD_SP(...) LD_W(v4f32, __VA_ARGS__)
  32. #define LD_D(RTYPE, psrc) *((RTYPE *)(psrc))
  33. #define LD_DP(...) LD_D(v2f64, __VA_ARGS__)
  34. #define ST_W(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in)
  35. #define ST_SP(...) ST_W(v4f32, __VA_ARGS__)
  36. #define ST_D(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in)
  37. #define ST_DP(...) ST_D(v2f64, __VA_ARGS__)
  38. #define COPY_FLOAT_TO_VECTOR(a, b) \
  39. b = __msa_cast_to_vector_float(a); \
  40. b = (v4f32) __msa_splati_w((v4i32) b, 0);
  41. /* Description : Load 2 vectors of single precision floating point elements with stride
  42. Arguments : Inputs - psrc, stride
  43. Outputs - out0, out1
  44. Return Type - single precision floating point
  45. */
  46. #define LD_SP2(psrc, stride, out0, out1) \
  47. { \
  48. out0 = LD_SP((psrc)); \
  49. out1 = LD_SP((psrc) + stride); \
  50. }
  51. /* Description : Load 2 vectors of double precision floating point elements with stride
  52. Arguments : Inputs - psrc, stride
  53. Outputs - out0, out1
  54. Return Type - double precision floating point
  55. */
  56. #define LD_DP2(psrc, stride, out0, out1) \
  57. { \
  58. out0 = LD_DP((psrc)); \
  59. out1 = LD_DP((psrc) + stride); \
  60. }
  61. #define LD_DP4(psrc, stride, out0, out1, out2, out3) \
  62. { \
  63. LD_DP2(psrc, stride, out0, out1) \
  64. LD_DP2(psrc + 2 * stride, stride, out2, out3) \
  65. }
  66. /* Description : Store vectors of single precision floating point elements with stride
  67. Arguments : Inputs - in0, in1, pdst, stride
  68. Details : Store 4 single precision floating point elements from 'in0' to (pdst)
  69. Store 4 single precision floating point elements from 'in1' to (pdst + stride)
  70. */
  71. #define ST_SP2(in0, in1, pdst, stride) \
  72. { \
  73. ST_SP(in0, (pdst)); \
  74. ST_SP(in1, (pdst) + stride); \
  75. }
  76. #define ST_SP4(in0, in1, in2, in3, pdst, stride) \
  77. { \
  78. ST_SP2(in0, in1, (pdst), stride); \
  79. ST_SP2(in2, in3, (pdst + 2 * stride), stride); \
  80. }
  81. #define ST_SP8(in0, in1, in2, in3, in4, in5, in6, in7, pdst, stride) \
  82. { \
  83. ST_SP4(in0, in1, in2, in3, (pdst), stride); \
  84. ST_SP4(in4, in5, in6, in7, (pdst + 4 * stride), stride); \
  85. }
  86. /* Description : Store vectors of double precision floating point elements with stride
  87. Arguments : Inputs - in0, in1, pdst, stride
  88. Details : Store 2 double precision floating point elements from 'in0' to (pdst)
  89. Store 2 double precision floating point elements from 'in1' to (pdst + stride)
  90. */
  91. #define ST_DP2(in0, in1, pdst, stride) \
  92. { \
  93. ST_DP(in0, (pdst)); \
  94. ST_DP(in1, (pdst) + stride); \
  95. }
  96. #define ST_DP4(in0, in1, in2, in3, pdst, stride) \
  97. { \
  98. ST_DP2(in0, in1, (pdst), stride); \
  99. ST_DP2(in2, in3, (pdst) + 2 * stride, stride); \
  100. }
  101. #define ST_DP8(in0, in1, in2, in3, in4, in5, in6, in7, pdst, stride) \
  102. { \
  103. ST_DP4(in0, in1, in2, in3, (pdst), stride); \
  104. ST_DP4(in4, in5, in6, in7, (pdst) + 4 * stride, stride); \
  105. }
  106. /* Description : Interleave both left and right half of input vectors
  107. Arguments : Inputs - in0, in1
  108. Outputs - out0, out1
  109. Return Type - as per RTYPE
  110. Details : Right half of byte elements from 'in0' and 'in1' are
  111. interleaved and written to 'out0'
  112. */
  113. #define ILVRL_W2(RTYPE, in0, in1, out0, out1) \
  114. { \
  115. out0 = (RTYPE) __msa_ilvr_w((v4i32) in0, (v4i32) in1); \
  116. out1 = (RTYPE) __msa_ilvl_w((v4i32) in0, (v4i32) in1); \
  117. }
  118. #define ILVRL_W2_SW(...) ILVRL_W2(v4i32, __VA_ARGS__)
  119. #define ILVRL_D2(RTYPE, in0, in1, out0, out1) \
  120. { \
  121. out0 = (RTYPE) __msa_ilvr_d((v2i64) in0, (v2i64) in1); \
  122. out1 = (RTYPE) __msa_ilvl_d((v2i64) in0, (v2i64) in1); \
  123. }
  124. #define ILVRL_D2_DP(...) ILVRL_D2(v2f64, __VA_ARGS__)
  125. /* Description : Indexed word element values are replicated to all
  126. elements in output vector
  127. Arguments : Inputs - in, stidx
  128. Outputs - out0, out1
  129. Return Type - as per RTYPE
  130. Details : 'stidx' element value from 'in' vector is replicated to all
  131. elements in 'out0' vector
  132. 'stidx + 1' element value from 'in' vector is replicated to all
  133. elements in 'out1' vector
  134. Valid index range for word operation is 0-3
  135. */
  136. #define SPLATI_W2(RTYPE, in, stidx, out0, out1) \
  137. { \
  138. out0 = (RTYPE) __msa_splati_w((v4i32) in, stidx); \
  139. out1 = (RTYPE) __msa_splati_w((v4i32) in, (stidx+1)); \
  140. }
  141. #define SPLATI_W4(RTYPE, in, out0, out1, out2, out3) \
  142. { \
  143. SPLATI_W2(RTYPE, in, 0, out0, out1); \
  144. SPLATI_W2(RTYPE, in, 2, out2, out3); \
  145. }
  146. #define SPLATI_W4_SP(...) SPLATI_W4(v4f32, __VA_ARGS__)
  147. /* Description : Transpose 4x4 block with word elements in vectors
  148. Arguments : Inputs - in0, in1, in2, in3
  149. Outputs - out0, out1, out2, out3
  150. Return Type - as per RTYPE
  151. */
  152. #define TRANSPOSE4x4_W(RTYPE, in0, in1, in2, in3, out0, out1, out2, out3) \
  153. { \
  154. v4i32 s0_m, s1_m, s2_m, s3_m; \
  155. \
  156. ILVRL_W2_SW(in1, in0, s0_m, s1_m); \
  157. ILVRL_W2_SW(in3, in2, s2_m, s3_m); \
  158. \
  159. out0 = (RTYPE) __msa_ilvr_d((v2i64) s2_m, (v2i64) s0_m); \
  160. out1 = (RTYPE) __msa_ilvl_d((v2i64) s2_m, (v2i64) s0_m); \
  161. out2 = (RTYPE) __msa_ilvr_d((v2i64) s3_m, (v2i64) s1_m); \
  162. out3 = (RTYPE) __msa_ilvl_d((v2i64) s3_m, (v2i64) s1_m); \
  163. }
  164. #define TRANSPOSE4x4_SP_SP(...) TRANSPOSE4x4_W(v4f32, __VA_ARGS__)
  165. #endif /* __MACROS_MSA_H__ */