Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Apr 28, 2024
1 parent 0dd0fd1 commit 1b30f37
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions include/kfr/multiarch.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
}
#endif

#if defined(CMT_BASE_ARCH) || !defined(CMT_MULTI)
#if 1
#define CMT_MULTI_NEEDS_GATE
#else
#endif
Expand Down Expand Up @@ -188,7 +188,7 @@
__VA_ARGS__ \
}

#if defined(CMT_BASE_ARCH) || !defined(CMT_MULTI)
#if 1
#define CMT_MULTI_NEEDS_GATE
#else
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/dft/convolution-impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ template class convolve_filter<complex<double>>;

} // namespace CMT_ARCH_NAME

#ifdef CMT_MULTI_NEEDS_GATE
#if 1
namespace internal_generic
{
template <typename T>
Expand Down
2 changes: 1 addition & 1 deletion src/dft/dft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ CMT_MULTI_PROTO(namespace impl {
void dft_initialize_transpose(internal_generic::fn_transpose<T> & transpose);
})

#ifdef CMT_MULTI_NEEDS_GATE
#if 1

namespace internal_generic
{
Expand Down
1 change: 0 additions & 1 deletion src/dft/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

namespace kfr
{
const char* library_version_dft() { return KFR_VERSION_FULL; }
} // namespace kfr
2 changes: 1 addition & 1 deletion src/dsp/biquad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ template expression_handle<double, 1> create_iir_filter<double>(const iir_params
} // namespace impl
} // namespace CMT_ARCH_NAME

#ifdef CMT_MULTI_NEEDS_GATE
#if 1

template <typename T>
iir_filter<T>::iir_filter(const iir_params<T>& params)
Expand Down
2 changes: 1 addition & 1 deletion src/dsp/fir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ template class fir_filter<double, complex<double>>;
} // namespace impl
} // namespace CMT_ARCH_NAME

#ifdef CMT_MULTI_NEEDS_GATE
#if 1

template <typename T, typename U>
void fir_filter<T, U>::process_buffer(U* dest, const U* src, size_t size)
Expand Down
2 changes: 1 addition & 1 deletion src/dsp/sample_rate_conversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ template struct samplerate_converter<complex<double>>;
} // namespace impl
} // namespace CMT_ARCH_NAME

#ifdef CMT_MULTI_NEEDS_GATE
#if 1

template <typename T>
samplerate_converter<T>::samplerate_converter(sample_rate_conversion_quality quality,
Expand Down
1 change: 0 additions & 1 deletion src/dsp/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

namespace kfr
{
const char* library_version_dsp() { return KFR_VERSION_FULL; }
} // namespace kfr

0 comments on commit 1b30f37

Please sign in to comment.