Skip to content

Commit 212efee

Browse files
committed
Fix incorrect type name in binops.h
1 parent c44c6ed commit 212efee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/kernel_float/binops.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ namespace detail {
325325
// Override `pow` using `log2` and `exp2`
326326
template<typename Policy, typename T, size_t N>
327327
struct apply_base_impl<Policy, ops::pow<T>, N, T, T, T> {
328-
KERNEL_FLOAT_INLINE static void call(ops::divide<T>, T* result, const T* lhs, const T* rhs) {
328+
KERNEL_FLOAT_INLINE static void call(ops::pow<T>, T* result, const T* lhs, const T* rhs) {
329329
T lhs_log[N];
330330
T result_log[N];
331331

0 commit comments

Comments
 (0)