File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -843,10 +843,10 @@ inline typename std::enable_if_t<std::is_floating_point_v<ValueT>, ValueT>
843843pow (const ValueT a, const ValueU b) {
844844 return sycl::pow (a, static_cast <ValueT>(b));
845845}
846-
847- // TODO: calling pow with non-floating point values is currently defaulting to
848- // double, which fails on devices without aspect::fp64. This has to be properly
849- // documented, and maybe changed to support all devices.
846+ // TODO(syclcompat-lib-reviewers) calling pow with non-floating point values
847+ // is currently defaulting to double, which fails on devices without
848+ // aspect::fp64. This has to be properly documented, and maybe changed to
849+ // support all devices.
850850template <typename ValueT, typename ValueU>
851851inline typename std::enable_if_t <!std::is_floating_point_v<ValueT>, double >
852852pow (const ValueT a, const ValueU b) {
You can’t perform that action at this time.
0 commit comments