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 7.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. /* Description : Load 2 vectors of single precision floating point elements with stride
  39. Arguments : Inputs - psrc, stride
  40. Outputs - out0, out1
  41. Return Type - single precision floating point
  42. */
  43. #define LD_SP2(psrc, stride, out0, out1) \
  44. { \
  45. out0 = LD_SP((psrc)); \
  46. out1 = LD_SP((psrc) + stride); \
  47. }
  48. /* Description : Load 2 vectors of double precision floating point elements with stride
  49. Arguments : Inputs - psrc, stride
  50. Outputs - out0, out1
  51. Return Type - double precision floating point
  52. */
  53. #define LD_DP2(psrc, stride, out0, out1) \
  54. { \
  55. out0 = LD_DP((psrc)); \
  56. out1 = LD_DP((psrc) + stride); \
  57. }
  58. #define LD_DP4(psrc, stride, out0, out1, out2, out3) \
  59. { \
  60. LD_DP2(psrc, stride, out0, out1) \
  61. LD_DP2(psrc + 2 * stride, stride, out2, out3) \
  62. }
  63. /* Description : Store vectors of single precision floating point elements with stride
  64. Arguments : Inputs - in0, in1, pdst, stride
  65. Details : Store 4 single precision floating point elements from 'in0' to (pdst)
  66. Store 4 single precision floating point elements from 'in1' to (pdst + stride)
  67. */
  68. #define ST_SP2(in0, in1, pdst, stride) \
  69. { \
  70. ST_SP(in0, (pdst)); \
  71. ST_SP(in1, (pdst) + stride); \
  72. }
  73. #define ST_SP4(in0, in1, in2, in3, pdst, stride) \
  74. { \
  75. ST_SP2(in0, in1, (pdst), stride); \
  76. ST_SP2(in2, in3, (pdst + 2 * stride), stride); \
  77. }
  78. #define ST_SP8(in0, in1, in2, in3, in4, in5, in6, in7, pdst, stride) \
  79. { \
  80. ST_SP4(in0, in1, in2, in3, (pdst), stride); \
  81. ST_SP4(in4, in5, in6, in7, (pdst + 4 * stride), stride); \
  82. }
  83. /* Description : Store vectors of double precision floating point elements with stride
  84. Arguments : Inputs - in0, in1, pdst, stride
  85. Details : Store 2 double precision floating point elements from 'in0' to (pdst)
  86. Store 2 double precision floating point elements from 'in1' to (pdst + stride)
  87. */
  88. #define ST_DP2(in0, in1, pdst, stride) \
  89. { \
  90. ST_DP(in0, (pdst)); \
  91. ST_DP(in1, (pdst) + stride); \
  92. }
  93. #define ST_DP4(in0, in1, in2, in3, pdst, stride) \
  94. { \
  95. ST_DP2(in0, in1, (pdst), stride); \
  96. ST_DP2(in2, in3, (pdst) + 2 * stride, stride); \
  97. }
  98. #define ST_DP8(in0, in1, in2, in3, in4, in5, in6, in7, pdst, stride) \
  99. { \
  100. ST_DP4(in0, in1, in2, in3, (pdst), stride); \
  101. ST_DP4(in4, in5, in6, in7, (pdst) + 4 * stride, stride); \
  102. }
  103. /* Description : Interleave both left and right half of input vectors
  104. Arguments : Inputs - in0, in1
  105. Outputs - out0, out1
  106. Return Type - as per RTYPE
  107. Details : Right half of byte elements from 'in0' and 'in1' are
  108. interleaved and written to 'out0'
  109. */
  110. #define ILVRL_W2(RTYPE, in0, in1, out0, out1) \
  111. { \
  112. out0 = (RTYPE) __msa_ilvr_w((v4i32) in0, (v4i32) in1); \
  113. out1 = (RTYPE) __msa_ilvl_w((v4i32) in0, (v4i32) in1); \
  114. }
  115. #define ILVRL_W2_SW(...) ILVRL_W2(v4i32, __VA_ARGS__)
  116. #define ILVRL_D2(RTYPE, in0, in1, out0, out1) \
  117. { \
  118. out0 = (RTYPE) __msa_ilvr_d((v2i64) in0, (v2i64) in1); \
  119. out1 = (RTYPE) __msa_ilvl_d((v2i64) in0, (v2i64) in1); \
  120. }
  121. #define ILVRL_D2_DP(...) ILVRL_D2(v2f64, __VA_ARGS__)
  122. /* Description : Transpose 4x4 block with word elements in vectors
  123. Arguments : Inputs - in0, in1, in2, in3
  124. Outputs - out0, out1, out2, out3
  125. Return Type - as per RTYPE
  126. */
  127. #define TRANSPOSE4x4_W(RTYPE, in0, in1, in2, in3, out0, out1, out2, out3) \
  128. { \
  129. v4i32 s0_m, s1_m, s2_m, s3_m; \
  130. \
  131. ILVRL_W2_SW(in1, in0, s0_m, s1_m); \
  132. ILVRL_W2_SW(in3, in2, s2_m, s3_m); \
  133. \
  134. out0 = (RTYPE) __msa_ilvr_d((v2i64) s2_m, (v2i64) s0_m); \
  135. out1 = (RTYPE) __msa_ilvl_d((v2i64) s2_m, (v2i64) s0_m); \
  136. out2 = (RTYPE) __msa_ilvr_d((v2i64) s3_m, (v2i64) s1_m); \
  137. out3 = (RTYPE) __msa_ilvl_d((v2i64) s3_m, (v2i64) s1_m); \
  138. }
  139. #define TRANSPOSE4x4_SP_SP(...) TRANSPOSE4x4_W(v4f32, __VA_ARGS__)
  140. #endif /* __MACROS_MSA_H__ */