Skip to content

Commit

Permalink
fix gpu build (apache#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-haibin-lin committed Jun 7, 2017
1 parent a7c8fe8 commit 39d12bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor/attach_op_execs_pass.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ForwardOpExecutor : public OpExecutor {
GetDefaultBlobs<gpu>(aux_array_, &aux_data_, &temp_aux_, op_ctx);
GetDefaultBlobs<gpu>(out_array, &out_data_, &temp_out_, op_ctx);
op_->Forward(op_ctx, in_data_, req, out_data_, aux_data_);
CastNonDefaultStorage<gpu>(out_array_, temp_out_, op_ctx);
CastNonDefaultStorage<gpu>(out_array, temp_out_, op_ctx);
#else
LOG(FATAL) << MXNET_GPU_NOT_ENABLED_ERROR;
#endif
Expand Down

0 comments on commit 39d12bc

Please sign in to comment.