Browse Source

!13058 bugfix: sq node is not enough for data transfer

From: @zuochuanyong
Reviewed-by: @jjfeing,@chujinjin
Signed-off-by: @jjfeing
tags/v1.2.0-rc1
mindspore-ci-bot Gitee 4 years ago
parent
commit
a0cc8306a6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/runtime/device/ascend/ascend_kernel_runtime.cc

+ 1
- 1
mindspore/ccsrc/runtime/device/ascend/ascend_kernel_runtime.cc View File

@@ -792,7 +792,7 @@ bool AscendKernelRuntime::InitDevice() {
return false;
}

ret = rtStreamCreate(&stream_, 0);
ret = rtStreamCreateWithFlags(&stream_, 0, RT_STREAM_HUGE);
if (ret != RT_ERROR_NONE) {
MS_LOG(EXCEPTION) << "Call rtStreamCreate, ret[" << ret << "]";
}


Loading…
Cancel
Save