| 1088 | } |
| 1089 | |
| 1090 | ETaskType NCatboostOptions::GetTaskType(const NJson::TJsonValue& source) { |
| 1091 | TOption<ETaskType> taskType("task_type", ETaskType::CPU); |
| 1092 | TJsonFieldHelper<decltype(taskType)>::Read(source, &taskType); |
| 1093 | return taskType.Get(); |
| 1094 | } |
| 1095 | |
| 1096 | ui32 NCatboostOptions::GetThreadCount(const NJson::TJsonValue& source) { |
| 1097 | TOption<ui32> threadCount("thread_count", NSystemInfo::CachedNumberOfCpus()); |
no test coverage detected