blob: 6afd45003ed302b4ca08dfc62bc189e8d9a70b6d [file] [log] [blame]
/*!
* Copyright (c) 2015 by Contributors
* \file slice_channel.cc
* \brief
* \author Bing Xu
*/
#include "./slice_channel-inl.h"
namespace mxnet {
namespace op {
template<>
Operator* CreateOp<gpu>(SliceChannelParam param, int dtype) {
Operator* op = nullptr;
MSHADOW_REAL_TYPE_SWITCH(dtype, DType, {
op = new SliceChannelOp<gpu, DType>(param);
})
return op;
}
} // namespace op
} // namespace mxnet