Skip to content

Commit e335b3d

Browse files
Apply remarks
1 parent 85ef3e0 commit e335b3d

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

dpctl_ext/tensor/libtensor/source/accumulators/cumulative_logsumexp.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ void init_cumulative_logsumexp(py::module_ m)
337337

338338
auto cumlogsumexp_dtype_supported = [&](const py::dtype &input_dtype,
339339
const py::dtype &output_dtype) {
340-
using dpctl::tensor::py_internal::py_accumulate_dtype_supported;
341340
return py_accumulate_dtype_supported(
342341
input_dtype, output_dtype, cumlogsumexp_strided_dispatch_table);
343342
};

dpctl_ext/tensor/libtensor/source/accumulators/cumulative_prod.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,6 @@ void init_cumulative_prod(py::module_ m)
346346

347347
auto cumprod_dtype_supported = [&](const py::dtype &input_dtype,
348348
const py::dtype &output_dtype) {
349-
using dpctl::tensor::py_internal::py_accumulate_dtype_supported;
350349
return py_accumulate_dtype_supported(input_dtype, output_dtype,
351350
cumprod_strided_dispatch_table);
352351
};

dpctl_ext/tensor/libtensor/source/accumulators/cumulative_sum.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,6 @@ void init_cumulative_sum(py::module_ m)
344344

345345
auto cumsum_dtype_supported = [&](const py::dtype &input_dtype,
346346
const py::dtype &output_dtype) {
347-
using dpctl::tensor::py_internal::py_accumulate_dtype_supported;
348347
return py_accumulate_dtype_supported(input_dtype, output_dtype,
349348
cumsum_strided_dispatch_table);
350349
};

0 commit comments

Comments
 (0)