/third_party/mindspore/mindspore/ccsrc/fl/armour/cipher/ |
D | cipher_init.cc | 54 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()
|
D | cipher_meta_storage.h | 70 string encrypt_type; member
|
/third_party/mindspore/mindspore/ccsrc/fl/server/ |
D | server.cc | 94 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()
|
D | executor.cc | 297 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/ |
D | ps_context.cc | 201 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
|
D | ps_context.h | 182 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/ |
D | run_cross_silo_lenet_server.py | 59 encrypt_type = args.encrypt_type variable 90 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
D | test_cross_silo_lenet.py | 72 encrypt_type = args.encrypt_type variable 95 "encrypt_type": encrypt_type
|
/third_party/mindspore/tests/st/fl/cross_silo_femnist/ |
D | run_cross_silo_femnist_server.py | 60 encrypt_type = args.encrypt_type variable 92 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
D | test_cross_silo_femnist.py | 89 encrypt_type = args.encrypt_type variable 114 "encrypt_type": encrypt_type
|
/third_party/mindspore/tests/st/fl/cross_silo_faster_rcnn/ |
D | run_cross_silo_fasterrcnn_server.py | 61 encrypt_type = args.encrypt_type variable 94 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
D | test_fl_fasterrcnn.py | 61 encrypt_type = config.encrypt_type variable 86 "encrypt_type": encrypt_type
|
/third_party/mindspore/tests/st/fl/albert/ |
D | run_hybrid_train_server.py | 74 encrypt_type = args.encrypt_type variable 114 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
D | cloud_train.py | 103 encrypt_type = args.encrypt_type 135 "encrypt_type": encrypt_type,
|
/third_party/mindspore/tests/st/fl/hybrid_lenet/ |
D | run_hybrid_train_server.py | 72 encrypt_type = args.encrypt_type variable 113 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
D | run_server_disaster_recovery.py | 90 encrypt_type = args.encrypt_type variable 134 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
D | test_hybrid_train_lenet.py | 84 encrypt_type = args.encrypt_type variable 122 "encrypt_type": encrypt_type,
|
/third_party/mindspore/tests/st/fl/mobile/ |
D | test_mobile_lenet.py | 86 encrypt_type = args.encrypt_type variable 117 "encrypt_type": encrypt_type,
|
D | run_mobile_server.py | 79 encrypt_type = args.encrypt_type variable 123 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
D | run_server_disaster_recovery.py | 86 encrypt_type = args.encrypt_type variable 130 cmd_server += " --encrypt_type=" + str(encrypt_type)
|
/third_party/mindspore/mindspore/ccsrc/fl/server/kernel/round/ |
D | start_fl_job_kernel.cc | 231 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()
|
D | update_model_kernel.cc | 124 if (ps::PSContext::instance()->encrypt_type() != ps::kPWEncryptType) { in OnLastCountEvent() 161 if (ps::PSContext::instance()->encrypt_type() != ps::kPWEncryptType) { in UpdateModel()
|
D | reconstruct_secrets_kernel.cc | 120 if (ps::PSContext::instance()->encrypt_type() == ps::kPWEncryptType) { in OnLastCountEvent()
|
/third_party/mindspore/mindspore/schema/ |
D | cipher.fbs | 27 encrypt_type:string;
|
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/ |
D | action.cc | 859 std::string encrypt_type = ps::PSContext::instance()->encrypt_type(); in StartServerAction() local 860 if (encrypt_type == ps::kPWEncryptType) { in StartServerAction()
|