Home
last modified time | relevance | path

Searched refs:cipher_time_window (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/tests/st/fl/albert/
Drun_hybrid_train_server.py76 cipher_time_window = args.cipher_time_window variable
116 cmd_server += " --cipher_time_window=" + str(cipher_time_window)
Dcloud_train.py105 cipher_time_window = args.cipher_time_window
137 "cipher_time_window": cipher_time_window,
/third_party/mindspore/tests/st/fl/hybrid_lenet/
Drun_hybrid_train_server.py74 cipher_time_window = args.cipher_time_window variable
115 cmd_server += " --cipher_time_window=" + str(cipher_time_window)
Dtest_hybrid_train_lenet.py86 cipher_time_window = args.cipher_time_window variable
117 "cipher_time_window": cipher_time_window,
/third_party/mindspore/tests/st/fl/mobile/
Drun_mobile_server.py67 cipher_time_window = args.cipher_time_window variable
109 cmd_server += " --cipher_time_window=" + str(cipher_time_window)
Dtest_mobile_lenet.py74 cipher_time_window = args.cipher_time_window variable
105 "cipher_time_window": cipher_time_window,
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/
Daction.cc845 uint64_t cipher_time_window = ps::PSContext::instance()->cipher_time_window(); in StartServerAction() local
862 …rounds_config.push_back({"exchangeKeys", true, cipher_time_window, true, exchange_keys_threshold}); in StartServerAction()
863 rounds_config.push_back({"getKeys", true, cipher_time_window, true, get_keys_threshold}); in StartServerAction()
864 …rounds_config.push_back({"shareSecrets", true, cipher_time_window, true, share_secrets_threshold}); in StartServerAction()
865 rounds_config.push_back({"getSecrets", true, cipher_time_window, true, get_secrets_threshold}); in StartServerAction()
866 … rounds_config.push_back({"getClientList", true, cipher_time_window, true, client_list_threshold}); in StartServerAction()
867 …rounds_config.push_back({"reconstructSecrets", true, cipher_time_window, true, reconstruct_secrets… in StartServerAction()
871 share_secrets_ratio, cipher_time_window, exchange_keys_threshold, get_keys_threshold, in StartServerAction()
/third_party/mindspore/mindspore/ccsrc/ps/
Dps_context.cc360 void PSContext::set_cipher_time_window(uint64_t cipher_time_window) { in set_cipher_time_window() argument
365 cipher_time_window_ = cipher_time_window; in set_cipher_time_window()
368 uint64_t PSContext::cipher_time_window() const { return cipher_time_window_; } in cipher_time_window() function in mindspore::ps::PSContext
Dps_context.h138 void set_cipher_time_window(uint64_t cipher_time_window);
139 uint64_t cipher_time_window() const;
/third_party/mindspore/mindspore/ccsrc/fl/server/
Dcommon.h64 uint64_t cipher_time_window = 300000; member
Dserver.cc223 cipher_time_window_ = cipher_config_.cipher_time_window; in InitIteration()