blob: 7d9324bd26322becdbd4b09af31004ed222cc942 [file] [log] [blame]
/*!
* Copyright (c) 2015 by Contributors
* \file softmax_output.cu
* \brief
* \author Bing Xu
*/
#include "./softmax_output-inl.h"
namespace mxnet {
namespace op {
template<>
Operator *CreateOp<gpu>(SoftmaxOutputParam param, int dtype) {
Operator *op = NULL;
MSHADOW_REAL_TYPE_SWITCH(dtype, DType, {
op = new SoftmaxOutputOp<gpu, DType>(param);
})
return op;
}
} // namespace op
} // namespace mxnet