Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Rename #445

Merged
merged 1 commit into from
Nov 1, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* Copyright (c) 2015 by Contributors
* \file softmax-inl.h
* \file softmax_output-inl.h
* \brief
* \author Bing Xu
*/
#ifndef MXNET_OPERATOR_SOFTMAX_INL_H_
#define MXNET_OPERATOR_SOFTMAX_INL_H_
#ifndef MXNET_OPERATOR_SOFTMAX_OUTPUT_INL_H_
#define MXNET_OPERATOR_SOFTMAX_OUTPUT_INL_H_

#include <dmlc/logging.h>
#include <dmlc/parameter.h>
Expand Down Expand Up @@ -193,4 +193,4 @@ class DeprecatedSoftmaxProp : public SoftmaxOutputProp {

} // namespace op
} // namespace mxnet
#endif // MXNET_OPERATOR_SOFTMAX_INL_H_
#endif // MXNET_OPERATOR_SOFTMAX_OUTPUT_INL_H_
4 changes: 2 additions & 2 deletions src/operator/softmax.cc → src/operator/softmax_output.cc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* Copyright (c) 2015 by Contributors
* \file softmax.cc
* \file softmax_output.cc
* \brief
* \author Bing Xu
*/
#include "./softmax-inl.h"
#include "./softmax_output-inl.h"

namespace mxnet {
namespace op {
Expand Down
4 changes: 2 additions & 2 deletions src/operator/softmax.cu → src/operator/softmax_output.cu
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* Copyright (c) 2015 by Contributors
* \file softmax.cu
* \file softmax_output.cu
* \brief
* \author Bing Xu
*/

#include "./softmax-inl.h"
#include "./softmax_output-inl.h"

namespace mxnet {
namespace op {
Expand Down