Skip to content

Commit ba0bb51

Browse files
committed
fix ambiguous
1 parent 0725db0 commit ba0bb51

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/ginkgo/core/base/precision_dispatch.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,8 @@ void mixed_precision_dispatch(Function fn, const LinOp* in, LinOp* out)
423423
GKO_NOT_SUPPORTED(in);
424424
}
425425
#else
426-
precision_dispatch<ValueType>(fn, in, out);
426+
// avoid ambiguous
427+
distributed::precision_dispatch<ValueType>(fn, in, out);
427428
#endif
428429
}
429430

0 commit comments

Comments
 (0)