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