ESPResSo
Extensible Simulation Package for Research on Soft Matter Systems
Loading...
Searching...
No Matches
electrokinetics/generated_kernels/myintrin.h
Go to the documentation of this file.
1/*
2Copyright 2019-2023, Michael Kuron.
3
4Redistribution and use in source and binary forms, with or without
5modification, are permitted provided that the following conditions are
6met:
7
8* Redistributions of source code must retain the above copyright
9 notice, this list of conditions, and the following disclaimer.
10
11* Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions, and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
14
15* Neither the name of the copyright holder nor the names of its
16 contributors may be used to endorse or promote products derived from
17 this software without specific prior written permission.
18
19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30*/
31
32// kernel generated with pystencils v1.4, lbmpy v1.4+1.g3fc1c8f.dirty, sympy
33// v1.12.1, lbmpy_walberla/pystencils_walberla from waLBerla commit
34// 007e77e077ad9d22b5eed6f3d3118240993e553c
35
36/**
37 * @file
38 * Philox counter-based RNG utility functions.
39 * Adapted from the pystencils source file
40 * https://i10git.cs.fau.de/pycodegen/pystencils/-/blob/ca4890a67757f066fc310b94b4b17b9f1b497ac2/src/pystencils/include/myintrin.h
41 */
42
43#pragma once
44
45#if defined(__SSE2__) || (defined(_MSC_VER) && !defined(_M_ARM64))
47#if defined(__AVX512VL__) || defined(__AVX10_1__)
48 return _mm_cvtepu32_ps(v);
49#else
54 return _mm_add_ps(_mm_add_ps(v2f, v2f), v1f);
55#endif
56}
57#endif
58
59#if defined(__SSE4_1__) || (defined(_MSC_VER) && !defined(_M_ARM64))
60#if !defined(__AVX512VL__) && !defined(__AVX10_1__) && defined(__GNUC__) && \
61 __GNUC__ >= 5 && !defined(__clang__)
62__attribute__((optimize("no-associative-math")))
63#endif
65_my_cvtepu64_pd(const __m128i x) {
66#if defined(__AVX512VL__) || defined(__AVX10_1__)
67 return _mm_cvtepu64_pd(x);
68#elif defined(__clang__)
71#else
72 __m128i xH = _mm_srli_epi64(x, 32);
74 xH, _mm_castpd_si128(_mm_set1_pd(19342813113834066795298816.))); // 2^84
76 x, _mm_castpd_si128(_mm_set1_pd(0x0010000000000000)), 0xcc); // 2^52
77 __m128d f =
79 _mm_set1_pd(19342813118337666422669312.)); // 2^84 + 2^52
80 return _mm_add_pd(f, _mm_castsi128_pd(xL));
81#endif
82}
83#endif
84
85#ifdef __AVX2__
87#if (!defined(__GNUC__) || __GNUC__ >= 8) || defined(__clang__)
88 return _mm256_set_m128i(hi, lo);
89#else
91#endif
92}
93
95#if (!defined(__GNUC__) || __GNUC__ >= 8) || defined(__clang__)
96 return _mm256_set_m128d(hi, lo);
97#else
99#endif
100}
101
103#if defined(__AVX512VL__) || defined(__AVX10_1__)
104 return _mm256_cvtepu32_ps(v);
105#else
111#endif
112}
113
114#if !defined(__AVX512VL__) && !defined(__AVX10_1__) && defined(__GNUC__) && \
115 __GNUC__ >= 5 && !defined(__clang__)
116__attribute__((optimize("no-associative-math")))
117#endif
120#if defined(__AVX512VL__) || defined(__AVX10_1__)
121 return _mm256_cvtepu64_pd(x);
122#elif defined(__clang__)
125#else
128 19342813113834066795298816.))); // 2^84
130 x, _mm256_castpd_si256(_mm256_set1_pd(0x0010000000000000)),
131 0xcc); // 2^52
134 _mm256_set1_pd(19342813118337666422669312.)); // 2^84 + 2^52
136#endif
137}
138#endif
139
140#if defined(__AVX512F__) || defined(__AVX10_512BIT__)
142 __m128i a) {
143 return _mm512_inserti32x4(
145 2),
146 d, 3);
147}
148
151}
152#endif
cudaStream_t stream[1]
CUDA streams for parallel computing on CPU and GPU.