| 2917 | */ |
| 2918 | |
| 2919 | ErrorCode QPilotMachine::execute_noise_learning_task(const std::string& parameter_json, std::string& task_id) |
| 2920 | { |
| 2921 | task_id = "task not execute"; |
| 2922 | if (m_imp_obj->init(m_pilot_url, m_log_cout)) |
| 2923 | { |
| 2924 | return m_imp_obj->execute_noise_learning_task(parameter_json, task_id); |
| 2925 | } |
| 2926 | return ErrorCode::ERR_TCP_INIT_FATLT; |
| 2927 | } |
| 2928 | |
| 2929 | ErrorCode QPilotMachine::async_execute_em_compute_task(const std::string& parameter_json, std::string& task_id) |
| 2930 | { |