repo
stringlengths
1
152
file
stringlengths
14
221
code
stringlengths
501
25k
file_length
int64
501
25k
avg_line_length
float64
20
99.5
max_line_length
int64
21
134
extension_type
stringclasses
2 values
XNNPACK
XNNPACK-master/src/math/f32-f16-cvt-sse2.c
// Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <emmintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_f16_cvt__sse2( ...
3,246
37.654762
101
c
XNNPACK
XNNPACK-master/src/math/f32-f16-cvt-sse41.c
// Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <smmintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_f16_cvt__sse41( ...
3,220
37.345238
101
c
XNNPACK
XNNPACK-master/src/math/f32-f16-cvt-wasmsimd.c
// Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_f16_cvt__wasmsi...
3,012
35.301205
81
c
XNNPACK
XNNPACK-master/src/math/f32-qs8-cvt-neon.c
// Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_qs8_cvt__neon( ...
1,180
25.840909
91
c
XNNPACK
XNNPACK-master/src/math/f32-qs8-cvt-neonv8.c
// Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/intrinsics-polyfill.h> #include <xnnpack/math-stubs.h...
1,038
26.342105
108
c
XNNPACK
XNNPACK-master/src/math/f32-qs8-cvt-wasmsimd.c
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_qs8_cvt__wasmsi...
1,769
30.607143
93
c
XNNPACK
XNNPACK-master/src/math/f32-qu8-cvt-neon.c
// Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_qu8_cvt__neon( ...
1,186
25.977273
91
c
XNNPACK
XNNPACK-master/src/math/f32-qu8-cvt-neonv8.c
// Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/intrinsics-polyfill.h> #include <xnnpack/math-stubs.h...
1,053
26.736842
108
c
XNNPACK
XNNPACK-master/src/math/f32-qu8-cvt-wasmsimd.c
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_qu8_cvt__wasmsi...
1,774
30.696429
93
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-neon-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundd__neon_addsub...
3,120
49.33871
119
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-neon-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundd__neon_cvt( ...
2,424
43.090909
118
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-scalar-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <math.h> #include <stddef.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundd__scalar_a...
2,402
43.5
117
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-scalar-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <math.h> #include <stddef.h> #include <stdint.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> void xnn_math_...
1,765
34.32
110
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-sse-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <xmmintrin.h> #include <xnnpack/math.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundd__sse_...
3,010
46.793651
117
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-sse2-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <emmintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundd__sse2_cvt( size_t n, co...
2,329
39.172414
111
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-wasmsimd-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundd__wasmsim...
3,019
46.936508
117
c
XNNPACK
XNNPACK-master/src/math/f32-roundd-wasmsimd-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundd__wasmsim...
2,466
42.280702
118
c
XNNPACK
XNNPACK-master/src/math/f32-roundne-neon-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundne__neon_addsu...
2,687
47
119
c
XNNPACK
XNNPACK-master/src/math/f32-roundne-scalar-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <math.h> #include <stddef.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundne__scalar_...
2,112
42.122449
117
c
XNNPACK
XNNPACK-master/src/math/f32-roundne-sse-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <xmmintrin.h> #include <xnnpack/math.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundne__sse...
2,642
45.368421
117
c
XNNPACK
XNNPACK-master/src/math/f32-roundne-sse2-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <emmintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundne__sse2_cvt( size_t n, c...
1,969
36.884615
110
c
XNNPACK
XNNPACK-master/src/math/f32-roundne-wasmsimd-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundne__wasmsi...
2,628
45.122807
117
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-neon-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundu__neon_addsub...
4,264
55.118421
119
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-neon-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundu__neon_cvt( ...
3,603
50.485714
118
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-scalar-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <math.h> #include <stddef.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundu__scalar_a...
2,687
45.344828
117
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-scalar-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <math.h> #include <stddef.h> #include <stdint.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> void xnn_math_...
1,773
35.204082
110
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-sse-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <xmmintrin.h> #include <xnnpack/math.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundu__sse_...
4,233
53.987013
119
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-sse2-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <emmintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundu__sse2_cvt( size_t n, co...
3,598
48.30137
118
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-wasmsimd-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundu__wasmsim...
4,242
53.397436
119
c
XNNPACK
XNNPACK-master/src/math/f32-roundu-wasmsimd-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundu__wasmsim...
3,683
50.166667
118
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-neon-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundz__neon_addsub...
3,485
51.818182
120
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-neon-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundz__neon_cvt( ...
2,001
39.857143
118
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-scalar-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <math.h> #include <stddef.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundz__scalar_a...
2,578
45.053571
118
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-scalar-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <math.h> #include <stddef.h> #include <stdint.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> void xnn_math_...
1,414
31.906977
110
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-sse-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <xmmintrin.h> #include <xnnpack/math.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundz__sse_...
3,397
49.716418
120
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-sse2-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <emmintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundz__sse2_cvt( size_t n, co...
1,960
36.711538
111
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-wasmsimd-addsub.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundz__wasmsim...
3,383
49.507463
120
c
XNNPACK
XNNPACK-master/src/math/f32-roundz-wasmsimd-cvt.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <stdint.h> #include <wasm_simd128.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_roundz__wasmsim...
2,067
39.54902
118
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-aarch64-neonfma-rr1-lut2048-p1-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
5,706
48.198276
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-aarch64-neonfma-rr1-lut64-p2-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) valu...
5,751
48.162393
125
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-aarch64-neonfma-rr1-p5-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__aarch64_neonfma_rr1_p5_div( ...
4,225
41.686869
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-aarch64-neonfma-rr2-lut2048-p1-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
5,916
48.722689
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-aarch64-neonfma-rr2-lut64-p2-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) valu...
5,961
48.683333
125
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-aarch64-neonfma-rr2-p5-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__aarch64_neonfma_rr2_p5_div( ...
4,435
42.490196
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx-rr2-p5-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx_rr2_p5_div( size_t n,...
4,847
43.888889
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx-rr2-p5-nr1.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx_rr2_p5_nr1( size_t n,...
5,213
44.33913
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx-rr2-p5-nr2.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx_rr2_p5_nr2( size_t n,...
5,286
44.577586
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr1-lut64-p2-gather-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,273
44.86087
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr1-lut64-p2-gather-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,592
45.22314
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr1-lut64-p2-gather-nr2fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,659
45.393443
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr1-lut64-p2-gather-nr2fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,773
45.943089
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr1-p5-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx2_rr1_p5_div( size_t n...
4,366
41.398058
118
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr1-p5-nr1fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx2_rr1_p5_nr1fma( size_...
4,685
41.990826
118
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr1-p5-nr2fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx2_rr1_p5_nr2fma( size_...
4,752
42.209091
118
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr2-lut64-p2-gather-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,492
45.550847
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr2-lut64-p2-gather-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,811
45.870968
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr2-lut64-p2-gather-nr2fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,878
46.032
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr2-lut64-p2-gather-nr2fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
5,992
46.563492
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr2-p5-div.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx2_rr2_p5_div( size_t n...
4,591
42.320755
118
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr2-p5-nr1fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx2_rr2_p5_nr1fma( size_...
4,910
42.848214
118
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx2-rr2-p5-nr2fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx2_rr2_p5_nr2fma( size_...
4,977
43.053097
118
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut16-p3-perm-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_lut16_p3_perm_sca...
3,939
40.041667
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_lut16_p3_perm_sca...
4,260
40.77451
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_lut16_p3_perm_sca...
4,374
41.475728
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut32-p2-perm2-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_lut32_p2_perm2_sc...
4,203
41.04
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_lut32_p2_perm2_sc...
4,524
41.688679
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_lut32_p2_perm2_sc...
4,638
42.35514
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut64-p2-gather-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
3,814
39.585106
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut64-p2-gather-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
4,135
40.36
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-lut64-p2-gather-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
4,249
41.079208
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-p5-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_p5_scalef_div( ...
2,729
34
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-p5-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_p5_scalef_nr1fma(...
3,050
35.321429
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr1-p5-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr1_p5_scalef_nr1fma1...
3,164
36.235294
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut16-p3-perm-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_lut16_p3_perm_sca...
4,164
41.070707
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut16-p3-perm-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_lut16_p3_perm_sca...
4,485
41.72381
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut16-p3-perm-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_lut16_p3_perm_sca...
4,599
42.396226
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_lut32_p2_perm2_sc...
4,428
42
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_lut32_p2_perm2_sc...
4,749
42.577982
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_lut32_p2_perm2_sc...
4,863
43.218182
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut64-p2-gather-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
4,033
40.587629
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut64-p2-gather-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
4,354
41.281553
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-lut64-p2-gather-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) val...
4,468
41.971154
119
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-p5-scalef-div.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_p5_scalef_div( ...
2,954
35.481481
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-p5-scalef-nr1fma.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_p5_scalef_nr1fma(...
3,275
36.655172
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-avx512f-rr2-p5-scalef-nr1fma1adj.c
// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <immintrin.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__avx512f_rr2_p5_scalef_nr1fma1...
3,389
37.522727
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neon-rr2-lut2048-p1-nr2recps.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
6,283
48.480315
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neon-rr2-lut64-p2-nr2recps.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) valu...
6,330
48.460938
125
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neon-rr2-p5-nr2recps.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__neon_rr2_p5_nr2recps( size...
4,829
43.311927
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
6,059
48.268293
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-lut2048-p1-nr2fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
6,061
48.284553
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-lut2048-p1-nr2recps.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
6,047
48.170732
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-lut64-p2-nr1recps1fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) valu...
6,104
48.233871
125
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-lut64-p2-nr2fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) valu...
6,106
48.25
125
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-lut64-p2-nr2recps.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 64) valu...
6,092
48.137097
125
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-p5-nr1recps1fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__neonfma_rr1_p5_nr1recps1fma( ...
4,578
42.198113
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-p5-nr2fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__neonfma_rr1_p5_nr2fma( siz...
4,580
42.216981
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr1-p5-nr2recps.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/math-stubs.h> void xnn_math_f32_sigmoid__neonfma_rr1_p5_nr2recps( s...
4,566
42.084906
117
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr2-lut2048-p1-nr1recps1fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
6,269
48.761905
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr2-lut2048-p1-nr2fma.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
6,271
48.777778
127
c
XNNPACK
XNNPACK-master/src/math/f32-sigmoid-neonfma-rr2-lut2048-p1-nr2recps.c
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include <assert.h> #include <stddef.h> #include <arm_neon.h> #include <xnnpack/common.h> #include <xnnpack/math-stubs.h> // Table of exp2(k / 2048) va...
6,257
48.666667
127
c