Skip to content

Commit 93844d2

Browse files
ChaiBapchyaJose Luis Contreras
authored and
Jose Luis Contreras
committed
la_op_inline.h to la_op-inl.h for consistency (apache#13045)
* la_op_inline.h to la_op-inl.h for consistency * operator/tensor left-over doc changes
1 parent abdf93a commit 93844d2

13 files changed

+19
-19
lines changed

Diff for: src/operator/linalg_impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
/*!
21-
* \file linalg.h
21+
* \file linalg_impl.h
2222
* \brief Implementation of unified tensor interface for advanced linear algebra functions
2323
* (specifically BLAS3/LAPACK) from within mxnet.
2424
*/

Diff for: src/operator/tensor/control_flow_op.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/*!
2121
* Copyright (c) 2017 by Contributors
22-
* \file control_flow.h
22+
* \file control_flow_op.h
2323
* \brief Function definitions of operators for controlling flow
2424
*/
2525
#ifndef MXNET_OPERATOR_TENSOR_CONTROL_FLOW_OP_H_

Diff for: src/operator/tensor/elemwise_binary_broadcast_op_basic.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
/*!
2121
* Copyright (c) 2016 by Contributors
22-
* \file elemwise_binary_scalar_op.cc
23-
* \brief CPU Implementation of binary function.
22+
* \file elemwise_binary_broadcast_op_basic.cc
23+
* \brief CPU Implementation of basic functions for elementwise binary broadcast operator.
2424
*/
2525
#include "./elemwise_unary_op.h"
2626
#include "./elemwise_binary_op.h"

Diff for: src/operator/tensor/elemwise_binary_broadcast_op_basic.cu

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
/*!
2121
* Copyright (c) 2016 by Contributors
22-
* \file elemwise_binary_scalar_op.cu
23-
* \brief GPU Implementation of binary function.
22+
* \file elemwise_binary_broadcast_op_basic.cu
23+
* \brief GPU Implementation of basic functions for elementwise binary broadcast operator.
2424
*/
2525
#include "./elemwise_unary_op.h"
2626
#include "./elemwise_binary_op.h"

Diff for: src/operator/tensor/elemwise_binary_broadcast_op_extended.cu

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/*!
2121
* Copyright (c) 2016 by Contributors
22-
* \file elemwise_binary_scalar_op.cu
22+
* \file elemwise_binary_broadcast_op_extended.cu
2323
* \brief GPU Implementation of extended functions for elementwise binary broadcast operator.
2424
*/
2525
#include "./elemwise_unary_op.h"

Diff for: src/operator/tensor/elemwise_binary_broadcast_op_logic.cu

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/*!
2121
* Copyright (c) 2016 by Contributors
22-
* \file elemwise_binary_scalar_op.cu
22+
* \file elemwise_binary_broadcast_op_logic.cu
2323
* \brief GPU Implementation of elementwise binary broadcast logical operators.
2424
*/
2525
#include "./elemwise_unary_op.h"

Diff for: src/operator/tensor/elemwise_binary_op_extended.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
/*!
2121
* Copyright (c) 2016 by Contributors
22-
* \file elemwise_binary_scalar_op.cc
23-
* \brief CPU Implementation of unary function.
22+
* \file elemwise_binary_op_extended.cc
23+
* \brief CPU Implementation of extended functions for elementwise binary broadcast operator..
2424
*/
2525
#include "./elemwise_unary_op.h"
2626
#include "./elemwise_binary_op-inl.h"

Diff for: src/operator/tensor/elemwise_scatter_op.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
/*!
21-
* \file elementwise_scatter_op.h
21+
* \file elemwise_scatter_op.h
2222
* \brief Function definition of elementwise scatter operators
2323
*/
2424
#ifndef MXNET_OPERATOR_TENSOR_ELEMWISE_SCATTER_OP_H_

Diff for: src/operator/tensor/la_op_inline.h renamed to src/operator/tensor/la_op-inl.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
/*!
2121
* Copyright (c) 2017 by Contributors
22-
* \file la_op_inline.h
22+
* \file la_op-inl.h
2323
* \brief Operators for advanced linear algebra.
2424
*/
25-
#ifndef MXNET_OPERATOR_TENSOR_LA_OP_INLINE_H_
26-
#define MXNET_OPERATOR_TENSOR_LA_OP_INLINE_H_
25+
#ifndef MXNET_OPERATOR_TENSOR_LA_OP_INL_H_
26+
#define MXNET_OPERATOR_TENSOR_LA_OP_INL_H_
2727

2828
#include "../linalg.h"
2929

@@ -672,4 +672,4 @@ struct syevd_backward {
672672
} // namespace op
673673
} // namespace mxnet
674674

675-
#endif // MXNET_OPERATOR_TENSOR_LA_OP_INLINE_H_
675+
#endif // MXNET_OPERATOR_TENSOR_LA_OP_INL_H_

Diff for: src/operator/tensor/la_op.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* \brief CPU implementation of Operators for advanced linear algebra.
2424
*/
2525
#include "./la_op.h"
26-
#include "./la_op_inline.h"
26+
#include "./la_op-inl.h"
2727

2828
namespace mxnet {
2929
namespace op {

Diff for: src/operator/tensor/la_op.cu

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* \brief GPU implementation of Operators for advanced linear algebra.
2323
*/
2424
#include "./la_op.h"
25-
#include "./la_op_inline.h"
25+
#include "./la_op-inl.h"
2626

2727
namespace mxnet {
2828
namespace op {

Diff for: src/operator/tensor/ordering_op-inl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/*!
2121
* Copyright (c) 2016 by Contributors
2222
* \file ordering_op-inl.h
23-
* \brief Function definition of matrix related operators
23+
* \brief Function definition of ordering operators
2424
*/
2525
#ifndef MXNET_OPERATOR_TENSOR_ORDERING_OP_INL_H_
2626
#define MXNET_OPERATOR_TENSOR_ORDERING_OP_INL_H_

Diff for: src/operator/tensor/ordering_op.cu

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/*!
2121
* Copyright (c) 2015 by Contributors
2222
* \file ordering_op.cu
23-
* \brief GPU Implementation of matrix operations
23+
* \brief GPU Implementation of ordering operations
2424
*/
2525
// this will be invoked by gcc and compile GPU version
2626
#include "./ordering_op-inl.h"

0 commit comments

Comments
 (0)