Skip to content

Commit 11562a2

Browse files
Merge finalize_functional_migration into move_usm_ndarray
2 parents 7327502 + 0277672 commit 11562a2

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

dpctl_ext/tensor/libtensor/include/kernels/elementwise_functions/logical_and.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
//===---------------------------------------------------------------------===//
3030
///
3131
/// \file
32-
/// This file defines kernels for elementwise evaluation of comparison of
33-
/// tensor elements.
32+
/// This file defines kernels for elementwise evaluation of LOGICAL_AND(x1, x2)
33+
/// function.
3434
//===---------------------------------------------------------------------===//
3535

3636
#pragma once

dpctl_ext/tensor/libtensor/include/kernels/elementwise_functions/logical_or.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
//===---------------------------------------------------------------------===//
3030
///
3131
/// \file
32-
/// This file defines kernels for elementwise evaluation of comparison of
33-
/// tensor elements.
32+
/// This file defines kernels for elementwise evaluation of LOGICAL_OR(x1, x2)
33+
/// function.
3434
//===---------------------------------------------------------------------===//
3535

3636
#pragma once

dpctl_ext/tensor/libtensor/include/kernels/elementwise_functions/logical_xor.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
//===---------------------------------------------------------------------===//
3030
///
3131
/// \file
32-
/// This file defines kernels for elementwise evaluation of comparison of
33-
/// tensor elements.
32+
/// This file defines kernels for elementwise evaluation of LOGICAL_XOR(x1, x2)
33+
/// function.
3434
//===---------------------------------------------------------------------===//
3535

3636
#pragma once

dpctl_ext/tensor/libtensor/include/kernels/elementwise_functions/remainder.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929
//===---------------------------------------------------------------------===//
3030
///
3131
/// \file
32-
/// This file defines kernels for elementwise evaluation of the
33-
/// modulo of tensor elements.
32+
/// This file defines kernels for elementwise evaluation of REMAINDER(x1, x2)
33+
/// function that computes the Python modulus operator, which is specifically
34+
/// designed as the complement to floor_divide(x1, x2).
3435
//===---------------------------------------------------------------------===//
3536

3637
#pragma once

dpctl_ext/tensor/libtensor/include/kernels/elementwise_functions/subtract.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//===---------------------------------------------------------------------===//
3030
///
3131
/// \file
32-
/// This file defines kernels for elementwise evaluation of DIVIDE(x1, x2)
32+
/// This file defines kernels for elementwise evaluation of SUBTRACT(x1, x2)
3333
/// function.
3434
//===---------------------------------------------------------------------===//
3535

dpctl_ext/tensor/libtensor/include/kernels/elementwise_functions/true_divide.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//===---------------------------------------------------------------------===//
3030
///
3131
/// \file
32-
/// This file defines kernels for elementwise evaluation of DIVIDE(x1, x2)
32+
/// This file defines kernels for elementwise evaluation of TRUE_DIVIDE(x1, x2)
3333
/// function.
3434
//===---------------------------------------------------------------------===//
3535

0 commit comments

Comments
 (0)