Replies: 2 comments
-
另外在文档中心/secretflow/开发者/设计文档/架构的可编程性提到:
x, y = HEUObject(), PYUObject()
z = x + y # add
z = x * y # mul
z = x @ y # matmul 我希望能有如此简洁的安全计算方式,这应该会让初级编程者有好的体验。 |
Beta Was this translation helpful? Give feedback.
0 replies
-
discussion在此issue中解决 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我正在基于隐语设计安全两方算术运算(加法、减法和乘法),为了学术研究和性能测试的目的。设计过程中,出现了一些bug或者可以改进的地方,主要包括以下几个方面:
x*y
,是否在定义x和y为device后能够直接以x*y
来进行计算,或者其他便捷的方式。这一点或许需要隐语工程师提供一些参考文档(目前我已知的是文档中心/secretflow/教程/SPU/SPU基础)该问题涉及到一些bug,更多的是讨论,因此本issue也在Disscussion板块提出(参见基于隐语的安全两方计算:支持的运算、协议和指标测试),隐语工程师可以选择一个方式和我进行探讨,十分感谢~
Reproduction code to reproduce the issue.
下面是我运行的arithmetic.py
下面是输出
Beta Was this translation helpful? Give feedback.
All reactions