forked from mindspore-Ecosystem/mindspore
fixed bugs
This commit is contained in:
parent
500a0d9c23
commit
a913ef1b73
|
@ -780,6 +780,7 @@ void GradExecutor::CheckNeedCompileGraph(const InputArgsInfoPtr &input_args_info
|
|||
{
|
||||
py::gil_scoped_acquire acquire;
|
||||
EraseTopCellFromTopCellList(pre_top_cell);
|
||||
pre_top_cell->ClearDeviceMemory();
|
||||
}
|
||||
already_run_top_cell_[already_top_cell_id] = new_top_cell;
|
||||
new_top_cell->set_force_top_cell_compile(false);
|
||||
|
|
|
@ -40,18 +40,11 @@ void AsyncQueue::WorkerLoop() {
|
|||
|
||||
while (true) {
|
||||
std::shared_ptr<AsyncTask> task;
|
||||
bool task_empty = false;
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(task_mutex_);
|
||||
task_empty = tasks_.empty();
|
||||
if (!task_empty) {
|
||||
task_cond_var_.wait(lock, [this]() { return !tasks_.empty(); });
|
||||
task = tasks_.front();
|
||||
}
|
||||
}
|
||||
if (task_empty) {
|
||||
std::this_thread::yield();
|
||||
continue;
|
||||
}
|
||||
|
||||
MS_LOG(DEBUG) << "Get task";
|
||||
MS_EXCEPTION_IF_NULL(task);
|
||||
|
|
Loading…
Reference in New Issue