NIS_Config.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. // The MIT License(MIT)
  2. //
  3. // Copyright(c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
  4. //
  5. // Permission is hereby granted, free of charge, to any person obtaining a copy of
  6. // this software and associated documentation files(the "Software"), to deal in
  7. // the Software without restriction, including without limitation the rights to
  8. // use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of
  9. // the Software, and to permit persons to whom the Software is furnished to do so,
  10. // subject to the following conditions :
  11. //
  12. // The above copyright notice and this permission notice shall be included in all
  13. // copies or substantial portions of the Software.
  14. //
  15. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  17. // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR
  18. // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  19. // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  20. // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. #pragma once
  22. #include <algorithm>
  23. #include <cmath>
  24. #include <cstdint>
  25. #if defined(_MSC_VER)
  26. #define NIS_ALIGNED(x) __declspec(align(x))
  27. #else
  28. #if defined(__GNUC__)
  29. #define NIS_ALIGNED(x) __attribute__ ((aligned(x)))
  30. #endif
  31. #endif
  32. struct NIS_ALIGNED(256) NISConfig
  33. {
  34. float kDetectRatio;
  35. float kDetectThres;
  36. float kMinContrastRatio;
  37. float kRatioNorm;
  38. float kContrastBoost;
  39. float kEps;
  40. float kSharpStartY;
  41. float kSharpScaleY;
  42. float kSharpStrengthMin;
  43. float kSharpStrengthScale;
  44. float kSharpLimitMin;
  45. float kSharpLimitScale;
  46. float kScaleX;
  47. float kScaleY;
  48. float kDstNormX;
  49. float kDstNormY;
  50. float kSrcNormX;
  51. float kSrcNormY;
  52. uint32_t kInputViewportOriginX;
  53. uint32_t kInputViewportOriginY;
  54. uint32_t kInputViewportWidth;
  55. uint32_t kInputViewportHeight;
  56. uint32_t kOutputViewportOriginX;
  57. uint32_t kOutputViewportOriginY;
  58. uint32_t kOutputViewportWidth;
  59. uint32_t kOutputViewportHeight;
  60. float reserved0;
  61. float reserved1;
  62. };
  63. enum class NISHDRMode : uint32_t
  64. {
  65. None = 0,
  66. Linear = 1,
  67. PQ = 2
  68. };
  69. enum class NISGPUArchitecture : uint32_t
  70. {
  71. NVIDIA_Generic = 0,
  72. AMD_Generic = 1,
  73. Intel_Generic = 2
  74. };
  75. struct NISOptimizer
  76. {
  77. bool isUpscaling;
  78. NISGPUArchitecture gpuArch;
  79. constexpr NISOptimizer(bool isUpscaling = true, NISGPUArchitecture gpuArch = NISGPUArchitecture::NVIDIA_Generic)
  80. : isUpscaling(isUpscaling)
  81. , gpuArch(gpuArch)
  82. {}
  83. constexpr uint32_t GetOptimalBlockWidth()
  84. {
  85. switch (gpuArch) {
  86. case NISGPUArchitecture::NVIDIA_Generic:
  87. return 32;
  88. case NISGPUArchitecture::AMD_Generic:
  89. return 32;
  90. case NISGPUArchitecture::Intel_Generic:
  91. return 32;
  92. }
  93. return 32;
  94. }
  95. constexpr uint32_t GetOptimalBlockHeight()
  96. {
  97. switch (gpuArch) {
  98. case NISGPUArchitecture::NVIDIA_Generic:
  99. return isUpscaling ? 24 : 32;
  100. case NISGPUArchitecture::AMD_Generic:
  101. return isUpscaling ? 24 : 32;
  102. case NISGPUArchitecture::Intel_Generic:
  103. return isUpscaling ? 24 : 32;
  104. }
  105. return isUpscaling ? 24 : 32;
  106. }
  107. constexpr uint32_t GetOptimalThreadGroupSize()
  108. {
  109. switch (gpuArch) {
  110. case NISGPUArchitecture::NVIDIA_Generic:
  111. return 256;
  112. case NISGPUArchitecture::AMD_Generic:
  113. return 256;
  114. case NISGPUArchitecture::Intel_Generic:
  115. return 256;
  116. }
  117. return 256;
  118. }
  119. };
  120. inline bool NVScalerUpdateConfig(NISConfig& config, float sharpness,
  121. uint32_t inputViewportOriginX, uint32_t inputViewportOriginY,
  122. uint32_t inputViewportWidth, uint32_t inputViewportHeight,
  123. uint32_t inputTextureWidth, uint32_t inputTextureHeight,
  124. uint32_t outputViewportOriginX, uint32_t outputViewportOriginY,
  125. uint32_t outputViewportWidth, uint32_t outputViewportHeight,
  126. uint32_t outputTextureWidth, uint32_t outputTextureHeight,
  127. NISHDRMode hdrMode = NISHDRMode::None)
  128. {
  129. // adjust params based on value from sharpness slider
  130. sharpness = std::max<float>(std::min<float>(1.f, sharpness), 0.f);
  131. float sharpen_slider = sharpness - 0.5f; // Map 0 to 1 to -0.5 to +0.5
  132. // Different range for 0 to 50% vs 50% to 100%
  133. // The idea is to make sure sharpness of 0% map to no-sharpening,
  134. // while also ensuring that sharpness of 100% doesn't cause too much over-sharpening.
  135. const float MaxScale = (sharpen_slider >= 0.0f) ? 1.25f : 1.75f;
  136. const float MinScale = (sharpen_slider >= 0.0f) ? 1.25f : 1.0f;
  137. const float LimitScale = (sharpen_slider >= 0.0f) ? 1.25f : 1.0f;
  138. float kDetectRatio = 1127.f / 1024.f;
  139. // Params for SDR
  140. float kDetectThres = 64.0f / 1024.0f;
  141. float kMinContrastRatio = 2.0f;
  142. float kMaxContrastRatio = 10.0f;
  143. float kSharpStartY = 0.45f;
  144. float kSharpEndY = 0.9f;
  145. float kSharpStrengthMin = std::max<float>(0.0f, 0.4f + sharpen_slider * MinScale * 1.2f);
  146. float kSharpStrengthMax = 1.6f + sharpen_slider * 1.8f;
  147. float kSharpLimitMin = std::max<float>(0.1f, 0.14f + sharpen_slider * LimitScale * 0.32f);
  148. float kSharpLimitMax = 0.5f + sharpen_slider * LimitScale * 0.6f;
  149. if (hdrMode == NISHDRMode::Linear || hdrMode == NISHDRMode::PQ)
  150. {
  151. kDetectThres = 32.0f / 1024.0f;
  152. kMinContrastRatio = 1.5f;
  153. kMaxContrastRatio = 5.0f;
  154. kSharpStrengthMin = std::max<float>(0.0f, 0.4f + sharpen_slider * MinScale * 1.1f);
  155. kSharpStrengthMax = 2.2f + sharpen_slider * MaxScale * 1.8f;
  156. kSharpLimitMin = std::max<float>(0.06f, 0.10f + sharpen_slider * LimitScale * 0.28f);
  157. kSharpLimitMax = 0.6f + sharpen_slider * LimitScale * 0.6f;
  158. if (hdrMode == NISHDRMode::PQ)
  159. {
  160. kSharpStartY = 0.35f;
  161. kSharpEndY = 0.55f;
  162. }
  163. else
  164. {
  165. kSharpStartY = 0.3f;
  166. kSharpEndY = 0.5f;
  167. }
  168. }
  169. float kRatioNorm = 1.0f / (kMaxContrastRatio - kMinContrastRatio);
  170. float kSharpScaleY = 1.0f / (kSharpEndY - kSharpStartY);
  171. float kSharpStrengthScale = kSharpStrengthMax - kSharpStrengthMin;
  172. float kSharpLimitScale = kSharpLimitMax - kSharpLimitMin;
  173. config.kInputViewportWidth = inputViewportWidth == 0 ? inputTextureWidth : inputViewportWidth;
  174. config.kInputViewportHeight = inputViewportHeight == 0 ? inputTextureHeight : inputViewportHeight;
  175. config.kOutputViewportWidth = outputViewportWidth == 0 ? outputTextureWidth : outputViewportWidth;
  176. config.kOutputViewportHeight = outputViewportHeight == 0 ? outputTextureHeight : outputViewportHeight;
  177. if (config.kInputViewportWidth == 0 || config.kInputViewportHeight == 0 ||
  178. config.kOutputViewportWidth == 0 || config.kOutputViewportHeight == 0)
  179. return false;
  180. config.kInputViewportOriginX = inputViewportOriginX;
  181. config.kInputViewportOriginY = inputViewportOriginY;
  182. config.kOutputViewportOriginX = outputViewportOriginX;
  183. config.kOutputViewportOriginY = outputViewportOriginY;
  184. config.kSrcNormX = 1.f / inputTextureWidth;
  185. config.kSrcNormY = 1.f / inputTextureHeight;
  186. config.kDstNormX = 1.f / outputTextureWidth;
  187. config.kDstNormY = 1.f / outputTextureHeight;
  188. config.kScaleX = config.kInputViewportWidth / float(config.kOutputViewportWidth);
  189. config.kScaleY = config.kInputViewportHeight / float(config.kOutputViewportHeight);
  190. if (config.kScaleX < 0.5f || config.kScaleX > 1.f || config.kScaleY < 0.5f || config.kScaleY > 1.f)
  191. return false;
  192. config.kDetectRatio = kDetectRatio;
  193. config.kDetectThres = kDetectThres;
  194. config.kMinContrastRatio = kMinContrastRatio;
  195. config.kRatioNorm = kRatioNorm;
  196. config.kContrastBoost = 1.0f;
  197. config.kEps = 1.0f;
  198. config.kSharpStartY = kSharpStartY;
  199. config.kSharpScaleY = kSharpScaleY;
  200. config.kSharpStrengthMin = kSharpStrengthMin;
  201. config.kSharpStrengthScale = kSharpStrengthScale;
  202. config.kSharpLimitMin = kSharpLimitMin;
  203. config.kSharpLimitScale = kSharpLimitScale;
  204. return true;
  205. }
  206. inline bool NVSharpenUpdateConfig(NISConfig& config, float sharpness,
  207. uint32_t inputViewportOriginX, uint32_t inputViewportOriginY,
  208. uint32_t inputViewportWidth, uint32_t inputViewportHeight,
  209. uint32_t inputTextureWidth, uint32_t inputTextureHeight,
  210. uint32_t outputViewportOriginX, uint32_t outputViewportOriginY,
  211. NISHDRMode hdrMode = NISHDRMode::None)
  212. {
  213. return NVScalerUpdateConfig(config, sharpness,
  214. inputViewportOriginX, inputViewportOriginY, inputViewportWidth, inputViewportHeight, inputTextureWidth, inputTextureHeight,
  215. outputViewportOriginX, outputViewportOriginY, inputViewportWidth, inputViewportHeight, inputTextureWidth, inputTextureHeight,
  216. hdrMode);
  217. }
  218. namespace {
  219. constexpr size_t kPhaseCount = 64;
  220. constexpr size_t kFilterSize = 8;
  221. constexpr float coef_scale[kPhaseCount][kFilterSize] = {
  222. {0.0, 0.0, 1.0000, 0.0, 0.0, 0.0, 0.0, 0.0},
  223. {0.0029, -0.0127, 1.0000, 0.0132, -0.0034, 0.0, 0.0, 0.0},
  224. {0.0063, -0.0249, 0.9985, 0.0269, -0.0068, 0.0, 0.0, 0.0},
  225. {0.0088, -0.0361, 0.9956, 0.0415, -0.0103, 0.0005, 0.0, 0.0},
  226. {0.0117, -0.0474, 0.9932, 0.0562, -0.0142, 0.0005, 0.0, 0.0},
  227. {0.0142, -0.0576, 0.9897, 0.0713, -0.0181, 0.0005, 0.0, 0.0},
  228. {0.0166, -0.0674, 0.9844, 0.0874, -0.0220, 0.0010, 0.0, 0.0},
  229. {0.0186, -0.0762, 0.9785, 0.1040, -0.0264, 0.0015, 0.0, 0.0},
  230. {0.0205, -0.0850, 0.9727, 0.1206, -0.0308, 0.0020, 0.0, 0.0},
  231. {0.0225, -0.0928, 0.9648, 0.1382, -0.0352, 0.0024, 0.0, 0.0},
  232. {0.0239, -0.1006, 0.9575, 0.1558, -0.0396, 0.0029, 0.0, 0.0},
  233. {0.0254, -0.1074, 0.9487, 0.1738, -0.0439, 0.0034, 0.0, 0.0},
  234. {0.0264, -0.1138, 0.9390, 0.1929, -0.0488, 0.0044, 0.0, 0.0},
  235. {0.0278, -0.1191, 0.9282, 0.2119, -0.0537, 0.0049, 0.0, 0.0},
  236. {0.0288, -0.1245, 0.9170, 0.2310, -0.0581, 0.0059, 0.0, 0.0},
  237. {0.0293, -0.1294, 0.9058, 0.2510, -0.0630, 0.0063, 0.0, 0.0},
  238. {0.0303, -0.1333, 0.8926, 0.2710, -0.0679, 0.0073, 0.0, 0.0},
  239. {0.0308, -0.1367, 0.8789, 0.2915, -0.0728, 0.0083, 0.0, 0.0},
  240. {0.0308, -0.1401, 0.8657, 0.3120, -0.0776, 0.0093, 0.0, 0.0},
  241. {0.0313, -0.1426, 0.8506, 0.3330, -0.0825, 0.0103, 0.0, 0.0},
  242. {0.0313, -0.1445, 0.8354, 0.3540, -0.0874, 0.0112, 0.0, 0.0},
  243. {0.0313, -0.1460, 0.8193, 0.3755, -0.0923, 0.0122, 0.0, 0.0},
  244. {0.0313, -0.1470, 0.8022, 0.3965, -0.0967, 0.0137, 0.0, 0.0},
  245. {0.0308, -0.1479, 0.7856, 0.4185, -0.1016, 0.0146, 0.0, 0.0},
  246. {0.0303, -0.1479, 0.7681, 0.4399, -0.1060, 0.0156, 0.0, 0.0},
  247. {0.0298, -0.1479, 0.7505, 0.4614, -0.1104, 0.0166, 0.0, 0.0},
  248. {0.0293, -0.1470, 0.7314, 0.4829, -0.1147, 0.0181, 0.0, 0.0},
  249. {0.0288, -0.1460, 0.7119, 0.5049, -0.1187, 0.0190, 0.0, 0.0},
  250. {0.0278, -0.1445, 0.6929, 0.5264, -0.1226, 0.0200, 0.0, 0.0},
  251. {0.0273, -0.1431, 0.6724, 0.5479, -0.1260, 0.0215, 0.0, 0.0},
  252. {0.0264, -0.1411, 0.6528, 0.5693, -0.1299, 0.0225, 0.0, 0.0},
  253. {0.0254, -0.1387, 0.6323, 0.5903, -0.1328, 0.0234, 0.0, 0.0},
  254. {0.0244, -0.1357, 0.6113, 0.6113, -0.1357, 0.0244, 0.0, 0.0},
  255. {0.0234, -0.1328, 0.5903, 0.6323, -0.1387, 0.0254, 0.0, 0.0},
  256. {0.0225, -0.1299, 0.5693, 0.6528, -0.1411, 0.0264, 0.0, 0.0},
  257. {0.0215, -0.1260, 0.5479, 0.6724, -0.1431, 0.0273, 0.0, 0.0},
  258. {0.0200, -0.1226, 0.5264, 0.6929, -0.1445, 0.0278, 0.0, 0.0},
  259. {0.0190, -0.1187, 0.5049, 0.7119, -0.1460, 0.0288, 0.0, 0.0},
  260. {0.0181, -0.1147, 0.4829, 0.7314, -0.1470, 0.0293, 0.0, 0.0},
  261. {0.0166, -0.1104, 0.4614, 0.7505, -0.1479, 0.0298, 0.0, 0.0},
  262. {0.0156, -0.1060, 0.4399, 0.7681, -0.1479, 0.0303, 0.0, 0.0},
  263. {0.0146, -0.1016, 0.4185, 0.7856, -0.1479, 0.0308, 0.0, 0.0},
  264. {0.0137, -0.0967, 0.3965, 0.8022, -0.1470, 0.0313, 0.0, 0.0},
  265. {0.0122, -0.0923, 0.3755, 0.8193, -0.1460, 0.0313, 0.0, 0.0},
  266. {0.0112, -0.0874, 0.3540, 0.8354, -0.1445, 0.0313, 0.0, 0.0},
  267. {0.0103, -0.0825, 0.3330, 0.8506, -0.1426, 0.0313, 0.0, 0.0},
  268. {0.0093, -0.0776, 0.3120, 0.8657, -0.1401, 0.0308, 0.0, 0.0},
  269. {0.0083, -0.0728, 0.2915, 0.8789, -0.1367, 0.0308, 0.0, 0.0},
  270. {0.0073, -0.0679, 0.2710, 0.8926, -0.1333, 0.0303, 0.0, 0.0},
  271. {0.0063, -0.0630, 0.2510, 0.9058, -0.1294, 0.0293, 0.0, 0.0},
  272. {0.0059, -0.0581, 0.2310, 0.9170, -0.1245, 0.0288, 0.0, 0.0},
  273. {0.0049, -0.0537, 0.2119, 0.9282, -0.1191, 0.0278, 0.0, 0.0},
  274. {0.0044, -0.0488, 0.1929, 0.9390, -0.1138, 0.0264, 0.0, 0.0},
  275. {0.0034, -0.0439, 0.1738, 0.9487, -0.1074, 0.0254, 0.0, 0.0},
  276. {0.0029, -0.0396, 0.1558, 0.9575, -0.1006, 0.0239, 0.0, 0.0},
  277. {0.0024, -0.0352, 0.1382, 0.9648, -0.0928, 0.0225, 0.0, 0.0},
  278. {0.0020, -0.0308, 0.1206, 0.9727, -0.0850, 0.0205, 0.0, 0.0},
  279. {0.0015, -0.0264, 0.1040, 0.9785, -0.0762, 0.0186, 0.0, 0.0},
  280. {0.0010, -0.0220, 0.0874, 0.9844, -0.0674, 0.0166, 0.0, 0.0},
  281. {0.0005, -0.0181, 0.0713, 0.9897, -0.0576, 0.0142, 0.0, 0.0},
  282. {0.0005, -0.0142, 0.0562, 0.9932, -0.0474, 0.0117, 0.0, 0.0},
  283. {0.0005, -0.0103, 0.0415, 0.9956, -0.0361, 0.0088, 0.0, 0.0},
  284. {0.0, -0.0068, 0.0269, 0.9985, -0.0249, 0.0063, 0.0, 0.0},
  285. {0.0, -0.0034, 0.0132, 1.0000, -0.0127, 0.0029, 0.0, 0.0}
  286. };
  287. constexpr float coef_usm[kPhaseCount][kFilterSize] = {
  288. {0, -0.6001, 1.2002, -0.6001, 0, 0, 0, 0},
  289. {0.0029, -0.6084, 1.1987, -0.5903, -0.0029, 0, 0, 0},
  290. {0.0049, -0.6147, 1.1958, -0.5791, -0.0068, 0.0005, 0, 0},
  291. {0.0073, -0.6196, 1.1890, -0.5659, -0.0103, 0, 0, 0},
  292. {0.0093, -0.6235, 1.1802, -0.5513, -0.0151, 0, 0, 0},
  293. {0.0112, -0.6265, 1.1699, -0.5352, -0.0195, 0.0005, 0, 0},
  294. {0.0122, -0.6270, 1.1582, -0.5181, -0.0259, 0.0005, 0, 0},
  295. {0.0142, -0.6284, 1.1455, -0.5005, -0.0317, 0.0005, 0, 0},
  296. {0.0156, -0.6265, 1.1274, -0.4790, -0.0386, 0.0005, 0, 0},
  297. {0.0166, -0.6235, 1.1089, -0.4570, -0.0454, 0.0010, 0, 0},
  298. {0.0176, -0.6187, 1.0879, -0.4346, -0.0532, 0.0010, 0, 0},
  299. {0.0181, -0.6138, 1.0659, -0.4102, -0.0615, 0.0015, 0, 0},
  300. {0.0190, -0.6069, 1.0405, -0.3843, -0.0698, 0.0015, 0, 0},
  301. {0.0195, -0.6006, 1.0161, -0.3574, -0.0796, 0.0020, 0, 0},
  302. {0.0200, -0.5928, 0.9893, -0.3286, -0.0898, 0.0024, 0, 0},
  303. {0.0200, -0.5820, 0.9580, -0.2988, -0.1001, 0.0029, 0, 0},
  304. {0.0200, -0.5728, 0.9292, -0.2690, -0.1104, 0.0034, 0, 0},
  305. {0.0200, -0.5620, 0.8975, -0.2368, -0.1226, 0.0039, 0, 0},
  306. {0.0205, -0.5498, 0.8643, -0.2046, -0.1343, 0.0044, 0, 0},
  307. {0.0200, -0.5371, 0.8301, -0.1709, -0.1465, 0.0049, 0, 0},
  308. {0.0195, -0.5239, 0.7944, -0.1367, -0.1587, 0.0054, 0, 0},
  309. {0.0195, -0.5107, 0.7598, -0.1021, -0.1724, 0.0059, 0, 0},
  310. {0.0190, -0.4966, 0.7231, -0.0649, -0.1865, 0.0063, 0, 0},
  311. {0.0186, -0.4819, 0.6846, -0.0288, -0.1997, 0.0068, 0, 0},
  312. {0.0186, -0.4668, 0.6460, 0.0093, -0.2144, 0.0073, 0, 0},
  313. {0.0176, -0.4507, 0.6055, 0.0479, -0.2290, 0.0083, 0, 0},
  314. {0.0171, -0.4370, 0.5693, 0.0859, -0.2446, 0.0088, 0, 0},
  315. {0.0161, -0.4199, 0.5283, 0.1255, -0.2598, 0.0098, 0, 0},
  316. {0.0161, -0.4048, 0.4883, 0.1655, -0.2754, 0.0103, 0, 0},
  317. {0.0151, -0.3887, 0.4497, 0.2041, -0.2910, 0.0107, 0, 0},
  318. {0.0142, -0.3711, 0.4072, 0.2446, -0.3066, 0.0117, 0, 0},
  319. {0.0137, -0.3555, 0.3672, 0.2852, -0.3228, 0.0122, 0, 0},
  320. {0.0132, -0.3394, 0.3262, 0.3262, -0.3394, 0.0132, 0, 0},
  321. {0.0122, -0.3228, 0.2852, 0.3672, -0.3555, 0.0137, 0, 0},
  322. {0.0117, -0.3066, 0.2446, 0.4072, -0.3711, 0.0142, 0, 0},
  323. {0.0107, -0.2910, 0.2041, 0.4497, -0.3887, 0.0151, 0, 0},
  324. {0.0103, -0.2754, 0.1655, 0.4883, -0.4048, 0.0161, 0, 0},
  325. {0.0098, -0.2598, 0.1255, 0.5283, -0.4199, 0.0161, 0, 0},
  326. {0.0088, -0.2446, 0.0859, 0.5693, -0.4370, 0.0171, 0, 0},
  327. {0.0083, -0.2290, 0.0479, 0.6055, -0.4507, 0.0176, 0, 0},
  328. {0.0073, -0.2144, 0.0093, 0.6460, -0.4668, 0.0186, 0, 0},
  329. {0.0068, -0.1997, -0.0288, 0.6846, -0.4819, 0.0186, 0, 0},
  330. {0.0063, -0.1865, -0.0649, 0.7231, -0.4966, 0.0190, 0, 0},
  331. {0.0059, -0.1724, -0.1021, 0.7598, -0.5107, 0.0195, 0, 0},
  332. {0.0054, -0.1587, -0.1367, 0.7944, -0.5239, 0.0195, 0, 0},
  333. {0.0049, -0.1465, -0.1709, 0.8301, -0.5371, 0.0200, 0, 0},
  334. {0.0044, -0.1343, -0.2046, 0.8643, -0.5498, 0.0205, 0, 0},
  335. {0.0039, -0.1226, -0.2368, 0.8975, -0.5620, 0.0200, 0, 0},
  336. {0.0034, -0.1104, -0.2690, 0.9292, -0.5728, 0.0200, 0, 0},
  337. {0.0029, -0.1001, -0.2988, 0.9580, -0.5820, 0.0200, 0, 0},
  338. {0.0024, -0.0898, -0.3286, 0.9893, -0.5928, 0.0200, 0, 0},
  339. {0.0020, -0.0796, -0.3574, 1.0161, -0.6006, 0.0195, 0, 0},
  340. {0.0015, -0.0698, -0.3843, 1.0405, -0.6069, 0.0190, 0, 0},
  341. {0.0015, -0.0615, -0.4102, 1.0659, -0.6138, 0.0181, 0, 0},
  342. {0.0010, -0.0532, -0.4346, 1.0879, -0.6187, 0.0176, 0, 0},
  343. {0.0010, -0.0454, -0.4570, 1.1089, -0.6235, 0.0166, 0, 0},
  344. {0.0005, -0.0386, -0.4790, 1.1274, -0.6265, 0.0156, 0, 0},
  345. {0.0005, -0.0317, -0.5005, 1.1455, -0.6284, 0.0142, 0, 0},
  346. {0.0005, -0.0259, -0.5181, 1.1582, -0.6270, 0.0122, 0, 0},
  347. {0.0005, -0.0195, -0.5352, 1.1699, -0.6265, 0.0112, 0, 0},
  348. {0, -0.0151, -0.5513, 1.1802, -0.6235, 0.0093, 0, 0},
  349. {0, -0.0103, -0.5659, 1.1890, -0.6196, 0.0073, 0, 0},
  350. {0.0005, -0.0068, -0.5791, 1.1958, -0.6147, 0.0049, 0, 0},
  351. {0, -0.0029, -0.5903, 1.1987, -0.6084, 0.0029, 0, 0}
  352. };
  353. }