forked from mindspore-Ecosystem/mindspore
disable multiprocess shared memory code for minddata until more testing
This commit is contained in:
parent
83b58d22b3
commit
791c841a27
|
@ -50,7 +50,7 @@ ConfigManager::ConfigManager()
|
|||
num_cpu_threads_(std::thread::hardware_concurrency()),
|
||||
auto_num_workers_num_shards_(1),
|
||||
auto_worker_config_(0),
|
||||
enable_shared_mem_(true) {
|
||||
enable_shared_mem_(false) {
|
||||
num_cpu_threads_ = num_cpu_threads_ > 0 ? num_cpu_threads_ : std::numeric_limits<uint16_t>::max();
|
||||
num_parallel_workers_ = num_parallel_workers_ < num_cpu_threads_ ? num_parallel_workers_ : num_cpu_threads_;
|
||||
auto env_cache_host = std::getenv("MS_CACHE_HOST");
|
||||
|
|
Loading…
Reference in New Issue