|
|
|
@ -154,17 +154,22 @@ class StackKernel : public framework::OpKernel<T> {
|
|
|
|
|
if (std::is_same<DeviceContext, platform::CPUDeviceContext>::value ||
|
|
|
|
|
n > kMaxThreshold) {
|
|
|
|
|
#ifdef __NVCC__
|
|
|
|
|
VLOG(10) << "Stack more than " << kMaxThreshold
|
|
|
|
|
<< " tensors on GPU may be slow.";
|
|
|
|
|
thrust::device_vector<const T *> device_x_vec(x_datas);
|
|
|
|
|
auto x_data_arr = device_x_vec.data().get();
|
|
|
|
|
#else
|
|
|
|
|
auto x_data_arr = x_datas.data();
|
|
|
|
|
#endif
|
|
|
|
|
StackFunctorForRange(dev_ctx, x_data_arr, y_data, total_num, n, post);
|
|
|
|
|
#ifdef __NVCC__
|
|
|
|
|
// Wait() must be called because device_x_vec may be destructed before
|
|
|
|
|
// kernel ends
|
|
|
|
|
dev_ctx.Wait();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#ifdef __NVCC__
|
|
|
|
|
else { // NOLINT
|
|
|
|
|
VLOG(10) << "Stack more than " << kMaxThreshold
|
|
|
|
|
<< " tensors on GPU may be slow.";
|
|
|
|
|
framework::Array<const T *, kMaxThreshold> x_data_arr;
|
|
|
|
|
for (int i = 0; i < n; ++i) x_data_arr[i] = x_datas[i];
|
|
|
|
|
StackFunctorForRange(dev_ctx, x_data_arr, y_data, total_num, n, post);
|
|
|
|
@ -243,6 +248,8 @@ class StackGradKernel : public framework::OpKernel<T> {
|
|
|
|
|
if (std::is_same<DeviceContext, platform::CPUDeviceContext>::value ||
|
|
|
|
|
n > kMaxThreshold) {
|
|
|
|
|
#ifdef __NVCC__
|
|
|
|
|
VLOG(10) << "Stack more than " << kMaxThreshold
|
|
|
|
|
<< " tensors on GPU may be slow.";
|
|
|
|
|
thrust::device_vector<T *> device_dx_vec(dx_datas);
|
|
|
|
|
auto dx_data_arr = device_dx_vec.data().get();
|
|
|
|
|
#else
|
|
|
|
@ -250,11 +257,14 @@ class StackGradKernel : public framework::OpKernel<T> {
|
|
|
|
|
#endif
|
|
|
|
|
StackGradFunctorForRange(dev_ctx, dx_data_arr, dy_data, total_num, n,
|
|
|
|
|
post);
|
|
|
|
|
#ifdef __NVCC__
|
|
|
|
|
// Wait() must be called because device_dx_vec may be destructed before
|
|
|
|
|
// kernel ends
|
|
|
|
|
dev_ctx.Wait();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#ifdef __NVCC__
|
|
|
|
|
else { // NOLINT
|
|
|
|
|
VLOG(10) << "Stack more than " << kMaxThreshold
|
|
|
|
|
<< " tensors on GPU may be slow.";
|
|
|
|
|
framework::Array<T *, kMaxThreshold> dx_data_arr;
|
|
|
|
|
for (int i = 0; i < n; ++i) dx_data_arr[i] = dx_datas[i];
|
|
|
|
|
StackGradFunctorForRange(dev_ctx, dx_data_arr, dy_data, total_num, n,
|
|
|
|
|