Skip to content

Commit

Permalink
Merge pull request #658 from argilo/remove-orc-sqrt
Browse files Browse the repository at this point in the history
Remove ORC kernels that use sqrtf
  • Loading branch information
jdemel authored Oct 22, 2023
2 parents 516f813 + ab60fd9 commit 629c29f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 45 deletions.
4 changes: 0 additions & 4 deletions kernels/volk/asm/orc/volk_32f_sqrt_32f_a_orc_impl.orc

This file was deleted.

13 changes: 0 additions & 13 deletions kernels/volk/asm/orc/volk_32fc_magnitude_32f_a_orc_impl.orc

This file was deleted.

13 changes: 0 additions & 13 deletions kernels/volk/volk_32f_sqrt_32f.h
Original file line number Diff line number Diff line change
Expand Up @@ -166,19 +166,6 @@ volk_32f_sqrt_32f_generic(float* cVector, const float* aVector, unsigned int num

#endif /* LV_HAVE_GENERIC */


#ifdef LV_HAVE_ORC

extern void volk_32f_sqrt_32f_a_orc_impl(float*, const float*, unsigned int);

static inline void
volk_32f_sqrt_32f_u_orc(float* cVector, const float* aVector, unsigned int num_points)
{
volk_32f_sqrt_32f_a_orc_impl(cVector, aVector, num_points);
}

#endif /* LV_HAVE_ORC */

#endif /* INCLUDED_volk_32f_sqrt_32f_a_H */

#ifndef INCLUDED_volk_32f_sqrt_32f_u_H
Expand Down
15 changes: 0 additions & 15 deletions kernels/volk/volk_32fc_magnitude_32f.h
Original file line number Diff line number Diff line change
Expand Up @@ -439,19 +439,4 @@ static inline void volk_32fc_magnitude_32f_neon_fancy_sweet(
#endif /* LV_HAVE_NEON */


#ifdef LV_HAVE_ORC

extern void volk_32fc_magnitude_32f_a_orc_impl(float* magnitudeVector,
const lv_32fc_t* complexVector,
unsigned int num_points);

static inline void volk_32fc_magnitude_32f_u_orc(float* magnitudeVector,
const lv_32fc_t* complexVector,
unsigned int num_points)
{
volk_32fc_magnitude_32f_a_orc_impl(magnitudeVector, complexVector, num_points);
}
#endif /* LV_HAVE_ORC */


#endif /* INCLUDED_volk_32fc_magnitude_32f_a_H */

0 comments on commit 629c29f

Please sign in to comment.