Home
last modified time | relevance | path

Searched refs:encrypt_type (Results 1 – 25 of 25) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/fl/armour/cipher/
Dcipher_init.cc54 publicparam_.encrypt_type = param.encrypt_type; in Init()
56 if (param.encrypt_type == mindspore::ps::kDPEncryptType) { in Init()
62 if (param.encrypt_type == mindspore::ps::kPWEncryptType) { in Init()
Dcipher_meta_storage.h70 string encrypt_type; member
/third_party/mindspore/mindspore/ccsrc/fl/server/
Dserver.cc94 std::string encrypt_type = ps::PSContext::instance()->encrypt_type(); in Run() local
95 if (encrypt_type != ps::kNotEncryptType) { in Run()
141 std::string encrypt_type = ps::PSContext::instance()->encrypt_type(); in InitServerContext() local
142 if (encrypt_type == ps::kPWEncryptType && server_num_ > 1) { in InitServerContext()
214 std::string encrypt_type = ps::PSContext::instance()->encrypt_type(); in InitIteration() local
215 if (encrypt_type == ps::kPWEncryptType) { in InitIteration()
254 std::string encrypt_type = ps::PSContext::instance()->encrypt_type(); in InitCipher() local
267 param.encrypt_type = encrypt_type; in InitCipher()
Dexecutor.cc297 std::string encrypt_type = ps::PSContext::instance()->encrypt_type(); in unmasked() local
298 if (encrypt_type == ps::kPWEncryptType) { in unmasked()
/third_party/mindspore/mindspore/ccsrc/ps/
Dps_context.cc201 void PSContext::set_encrypt_type(const std::string &encrypt_type) { in set_encrypt_type() argument
202 …if (encrypt_type != kNotEncryptType && encrypt_type != kDPEncryptType && encrypt_type != kPWEncryp… in set_encrypt_type()
203 …MS_LOG(EXCEPTION) << encrypt_type << " is invalid. Encrypt type must be " << kNotEncryptType << " … in set_encrypt_type()
207 encrypt_type_ = encrypt_type; in set_encrypt_type()
209 const std::string &PSContext::encrypt_type() const { return encrypt_type_; } in encrypt_type() function in mindspore::ps::PSContext
Dps_context.h182 void set_encrypt_type(const std::string &encrypt_type);
183 const std::string &encrypt_type() const;
/third_party/mindspore/tests/st/fl/cross_silo_lenet/
Drun_cross_silo_lenet_server.py59 encrypt_type = args.encrypt_type variable
90 cmd_server += " --encrypt_type=" + str(encrypt_type)
Dtest_cross_silo_lenet.py72 encrypt_type = args.encrypt_type variable
95 "encrypt_type": encrypt_type
/third_party/mindspore/tests/st/fl/cross_silo_femnist/
Drun_cross_silo_femnist_server.py60 encrypt_type = args.encrypt_type variable
92 cmd_server += " --encrypt_type=" + str(encrypt_type)
Dtest_cross_silo_femnist.py89 encrypt_type = args.encrypt_type variable
114 "encrypt_type": encrypt_type
/third_party/mindspore/tests/st/fl/cross_silo_faster_rcnn/
Drun_cross_silo_fasterrcnn_server.py61 encrypt_type = args.encrypt_type variable
94 cmd_server += " --encrypt_type=" + str(encrypt_type)
Dtest_fl_fasterrcnn.py61 encrypt_type = config.encrypt_type variable
86 "encrypt_type": encrypt_type
/third_party/mindspore/tests/st/fl/albert/
Drun_hybrid_train_server.py74 encrypt_type = args.encrypt_type variable
114 cmd_server += " --encrypt_type=" + str(encrypt_type)
Dcloud_train.py103 encrypt_type = args.encrypt_type
135 "encrypt_type": encrypt_type,
/third_party/mindspore/tests/st/fl/hybrid_lenet/
Drun_hybrid_train_server.py72 encrypt_type = args.encrypt_type variable
113 cmd_server += " --encrypt_type=" + str(encrypt_type)
Drun_server_disaster_recovery.py90 encrypt_type = args.encrypt_type variable
134 cmd_server += " --encrypt_type=" + str(encrypt_type)
Dtest_hybrid_train_lenet.py84 encrypt_type = args.encrypt_type variable
122 "encrypt_type": encrypt_type,
/third_party/mindspore/tests/st/fl/mobile/
Dtest_mobile_lenet.py86 encrypt_type = args.encrypt_type variable
117 "encrypt_type": encrypt_type,
Drun_mobile_server.py79 encrypt_type = args.encrypt_type variable
123 cmd_server += " --encrypt_type=" + str(encrypt_type)
Drun_server_disaster_recovery.py86 encrypt_type = args.encrypt_type variable
130 cmd_server += " --encrypt_type=" + str(encrypt_type)
/third_party/mindspore/mindspore/ccsrc/fl/server/kernel/round/
Dstart_fl_job_kernel.cc231 auto encrypt_type = fbb->CreateString(ps::PSContext::instance()->encrypt_type()); in BuildStartFLJobRsp() local
234 …CreateCipherPublicParams(*fbb.get(), t, p, g, prime, dp_eps, dp_delta, dp_norm_clip, encrypt_type); in BuildStartFLJobRsp()
Dupdate_model_kernel.cc124 if (ps::PSContext::instance()->encrypt_type() != ps::kPWEncryptType) { in OnLastCountEvent()
161 if (ps::PSContext::instance()->encrypt_type() != ps::kPWEncryptType) { in UpdateModel()
Dreconstruct_secrets_kernel.cc120 if (ps::PSContext::instance()->encrypt_type() == ps::kPWEncryptType) { in OnLastCountEvent()
/third_party/mindspore/mindspore/schema/
Dcipher.fbs27 encrypt_type:string;
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/
Daction.cc859 std::string encrypt_type = ps::PSContext::instance()->encrypt_type(); in StartServerAction() local
860 if (encrypt_type == ps::kPWEncryptType) { in StartServerAction()