Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
simde
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
simde
Commits
b21001cd
Commit
b21001cd
authored
Jan 07, 2021
by
Evan Nemerson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
neon/rndp: initial implementation
parent
2015796f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
144 additions
and
0 deletions
+144
-0
arm/neon.h
arm/neon.h
+1
-0
arm/neon/rndp.h
arm/neon/rndp.h
+143
-0
No files found.
arm/neon.h
View file @
b21001cd
...
...
@@ -129,6 +129,7 @@
#include "neon/rev64.h"
#include "neon/rhadd.h"
#include "neon/rnd.h"
#include "neon/rndp.h"
#include "neon/rshl.h"
#include "neon/rshr_n.h"
#include "neon/rsra_n.h"
...
...
arm/neon/rndp.h
0 → 100644
View file @
b21001cd
/* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Copyright:
* 2020-2021 Evan Nemerson <evan@nemerson.com>
*/
#if !defined(SIMDE_ARM_NEON_RNDP_H)
#define SIMDE_ARM_NEON_RNDP_H
#include "types.h"
HEDLEY_DIAGNOSTIC_PUSH
SIMDE_DISABLE_UNWANTED_DIAGNOSTICS
SIMDE_BEGIN_DECLS_
SIMDE_FUNCTION_ATTRIBUTES
simde_float32x2_t
simde_vrndp_f32
(
simde_float32x2_t
a
)
{
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE)
return
vrndp_f32
(
a
);
#else
simde_float32x2_private
r_
,
a_
=
simde_float32x2_to_private
(
a
);
SIMDE_VECTORIZE
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
r_
.
values
[
i
]
=
simde_math_ceilf
(
a_
.
values
[
i
]);
}
return
simde_float32x2_from_private
(
r_
);
#endif
}
#if defined(SIMDE_ARM_NEON_A32V7_ENABLE_NATIVE_ALIASES)
#undef vrndp_f32
#define vrndp_f32(a) simde_vrndp_f32(a)
#endif
SIMDE_FUNCTION_ATTRIBUTES
simde_float64x1_t
simde_vrndp_f64
(
simde_float64x1_t
a
)
{
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE)
return
vrndp_f64
(
a
);
#else
simde_float64x1_private
r_
,
a_
=
simde_float64x1_to_private
(
a
);
SIMDE_VECTORIZE
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
r_
.
values
[
i
]
=
simde_math_ceil
(
a_
.
values
[
i
]);
}
return
simde_float64x1_from_private
(
r_
);
#endif
}
#if defined(SIMDE_ARM_NEON_A64V8_ENABLE_NATIVE_ALIASES)
#undef vrndp_f64
#define vrndp_f64(a) simde_vrndp_f64(a)
#endif
SIMDE_FUNCTION_ATTRIBUTES
simde_float32x4_t
simde_vrndpq_f32
(
simde_float32x4_t
a
)
{
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE)
return
vrndpq_f32
(
a
);
#elif defined(SIMDE_X86_SSE4_1_NATIVE)
return
_mm_round_ps
(
a
,
_MM_FROUND_TO_POS_INF
);
#elif defined(SIMDE_X86_SVML_NATIVE) && defined(SIMDE_X86_SSE_NATIVE)
return
_mm_ceil_ps
(
a
);
#elif defined(SIMDE_POWER_ALTIVEC_P6_NATIVE)
return
vec_ceil
(
a
);
#else
simde_float32x4_private
r_
,
a_
=
simde_float32x4_to_private
(
a
);
SIMDE_VECTORIZE
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
r_
.
values
[
i
]
=
simde_math_ceilf
(
a_
.
values
[
i
]);
}
return
simde_float32x4_from_private
(
r_
);
#endif
}
#if defined(SIMDE_ARM_NEON_A32V7_ENABLE_NATIVE_ALIASES)
#undef vrndpq_f32
#define vrndpq_f32(a) simde_vrndpq_f32(a)
#endif
SIMDE_FUNCTION_ATTRIBUTES
simde_float64x2_t
simde_vrndpq_f64
(
simde_float64x2_t
a
)
{
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE)
return
vrndpq_f64
(
a
);
#elif defined(SIMDE_X86_SSE4_1_NATIVE)
return
_mm_round_pd
(
a
,
_MM_FROUND_TO_POS_INF
);
#elif defined(SIMDE_X86_SVML_NATIVE) && defined(SIMDE_X86_SSE_NATIVE)
return
_mm_ceil_pd
(
a
);
#elif defined(SIMDE_POWER_ALTIVEC_P8_NATIVE)
return
vec_ceil
(
a
);
#else
simde_float64x2_private
r_
,
a_
=
simde_float64x2_to_private
(
a
);
SIMDE_VECTORIZE
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
r_
.
values
[
i
]
=
simde_math_ceil
(
a_
.
values
[
i
]);
}
return
simde_float64x2_from_private
(
r_
);
#endif
}
#if defined(SIMDE_ARM_NEON_A64V8_ENABLE_NATIVE_ALIASES)
#undef vrndpq_f64
#define vrndpq_f64(a) simde_vrndpq_f64(a)
#endif
SIMDE_END_DECLS_
HEDLEY_DIAGNOSTIC_POP
#endif
/* !defined(SIMDE_ARM_NEON_RNDP_H) */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment