cukks 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. cukks-0.1.0/LICENSE +201 -0
  2. cukks-0.1.0/NOTICE +118 -0
  3. cukks-0.1.0/PKG-INFO +326 -0
  4. cukks-0.1.0/README.md +283 -0
  5. cukks-0.1.0/cukks/__init__.py +155 -0
  6. cukks-0.1.0/cukks/_cuda_compat.py +243 -0
  7. cukks-0.1.0/cukks/batching/__init__.py +13 -0
  8. cukks-0.1.0/cukks/batching/packing.py +161 -0
  9. cukks-0.1.0/cukks/context.py +714 -0
  10. cukks-0.1.0/cukks/converter.py +907 -0
  11. cukks-0.1.0/cukks/examples/__init__.py +1 -0
  12. cukks-0.1.0/cukks/examples/encrypted_inference.py +361 -0
  13. cukks-0.1.0/cukks/install_backend.py +197 -0
  14. cukks-0.1.0/cukks/nn/__init__.py +73 -0
  15. cukks-0.1.0/cukks/nn/activations.py +332 -0
  16. cukks-0.1.0/cukks/nn/attention.py +401 -0
  17. cukks-0.1.0/cukks/nn/batchnorm.py +265 -0
  18. cukks-0.1.0/cukks/nn/block_diagonal.py +163 -0
  19. cukks-0.1.0/cukks/nn/block_diagonal_low_rank.py +128 -0
  20. cukks-0.1.0/cukks/nn/conv.py +454 -0
  21. cukks-0.1.0/cukks/nn/dropout.py +65 -0
  22. cukks-0.1.0/cukks/nn/encrypted_block_diag_lr.py +127 -0
  23. cukks-0.1.0/cukks/nn/flatten.py +134 -0
  24. cukks-0.1.0/cukks/nn/layernorm.py +148 -0
  25. cukks-0.1.0/cukks/nn/linear.py +279 -0
  26. cukks-0.1.0/cukks/nn/module.py +204 -0
  27. cukks-0.1.0/cukks/nn/permuted_block_diagonal.py +587 -0
  28. cukks-0.1.0/cukks/nn/pooling.py +630 -0
  29. cukks-0.1.0/cukks/nn/residual.py +81 -0
  30. cukks-0.1.0/cukks/nn/sequential.py +108 -0
  31. cukks-0.1.0/cukks/stats/__init__.py +30 -0
  32. cukks-0.1.0/cukks/stats/crypto_inv_sqrt.py +185 -0
  33. cukks-0.1.0/cukks/stats/crypto_reciprocal.py +90 -0
  34. cukks-0.1.0/cukks/stats/normalization.py +127 -0
  35. cukks-0.1.0/cukks/tensor.py +894 -0
  36. cukks-0.1.0/cukks/utils/__init__.py +15 -0
  37. cukks-0.1.0/cukks/utils/approximations.py +256 -0
  38. cukks-0.1.0/cukks.egg-info/PKG-INFO +326 -0
  39. cukks-0.1.0/cukks.egg-info/SOURCES.txt +60 -0
  40. cukks-0.1.0/cukks.egg-info/dependency_links.txt +1 -0
  41. cukks-0.1.0/cukks.egg-info/entry_points.txt +3 -0
  42. cukks-0.1.0/cukks.egg-info/requires.txt +21 -0
  43. cukks-0.1.0/cukks.egg-info/top_level.txt +5 -0
  44. cukks-0.1.0/pyproject.toml +94 -0
  45. cukks-0.1.0/setup.cfg +4 -0
  46. cukks-0.1.0/setup.py +113 -0
  47. cukks-0.1.0/tests/test_auto_params.py +450 -0
  48. cukks-0.1.0/tests/test_batching.py +302 -0
  49. cukks-0.1.0/tests/test_bootstrap.py +144 -0
  50. cukks-0.1.0/tests/test_bugfixes.py +595 -0
  51. cukks-0.1.0/tests/test_converter.py +246 -0
  52. cukks-0.1.0/tests/test_cuda_compat.py +317 -0
  53. cukks-0.1.0/tests/test_depth_tracking.py +302 -0
  54. cukks-0.1.0/tests/test_e2e.py +738 -0
  55. cukks-0.1.0/tests/test_gpu_integration.py +734 -0
  56. cukks-0.1.0/tests/test_mock_backend.py +215 -0
  57. cukks-0.1.0/tests/test_nn_modules.py +759 -0
  58. cukks-0.1.0/tests/test_residual.py +199 -0
  59. cukks-0.1.0/tests/test_serialization.py +129 -0
  60. cukks-0.1.0/tests/test_state_propagation.py +293 -0
  61. cukks-0.1.0/tests/test_stats.py +326 -0
  62. cukks-0.1.0/tests/test_tensor.py +147 -0
cukks-0.1.0/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2024 CuKKS Authors
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
cukks-0.1.0/NOTICE ADDED
@@ -0,0 +1,118 @@
1
+ CuKKS - CKKS Homomorphic Encryption with CUDA GPU Acceleration
2
+ Copyright 2024 CuKKS Authors
3
+
4
+ This product includes software developed by the CuKKS project
5
+ (https://github.com/devUuung/CuKKS).
6
+
7
+ ================================================================================
8
+ THIRD-PARTY LICENSES
9
+ ================================================================================
10
+
11
+ This software includes the following third-party components:
12
+
13
+ --------------------------------------------------------------------------------
14
+ OpenFHE - Open-Source Fully Homomorphic Encryption Library
15
+ --------------------------------------------------------------------------------
16
+ Copyright (c) 2022 OpenFHE
17
+ License: BSD 2-Clause "Simplified" License
18
+ Source: https://github.com/openfheorg/openfhe-development
19
+
20
+ BSD 2-Clause License
21
+
22
+ Redistribution and use in source and binary forms, with or without
23
+ modification, are permitted provided that the following conditions are met:
24
+
25
+ 1. Redistributions of source code must retain the above copyright notice, this
26
+ list of conditions and the following disclaimer.
27
+
28
+ 2. Redistributions in binary form must reproduce the above copyright notice,
29
+ this list of conditions and the following disclaimer in the documentation
30
+ and/or other materials provided with the distribution.
31
+
32
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
33
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
35
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
36
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
38
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
40
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
+
43
+ --------------------------------------------------------------------------------
44
+ pybind11 - Seamless operability between C++11 and Python
45
+ --------------------------------------------------------------------------------
46
+ Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
47
+ License: BSD 3-Clause "New" or "Revised" License
48
+ Source: https://github.com/pybind/pybind11
49
+
50
+ Redistribution and use in source and binary forms, with or without
51
+ modification, are permitted provided that the following conditions are met:
52
+
53
+ 1. Redistributions of source code must retain the above copyright notice, this
54
+ list of conditions and the following disclaimer.
55
+
56
+ 2. Redistributions in binary form must reproduce the above copyright notice,
57
+ this list of conditions and the following disclaimer in the documentation
58
+ and/or other materials provided with the distribution.
59
+
60
+ 3. Neither the name of the copyright holder nor the names of its contributors
61
+ may be used to endorse or promote products derived from this software
62
+ without specific prior written permission.
63
+
64
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
65
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
66
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
67
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
68
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
69
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
70
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
71
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
72
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
73
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
74
+
75
+ --------------------------------------------------------------------------------
76
+ cereal - A C++11 library for serialization
77
+ --------------------------------------------------------------------------------
78
+ Copyright (c) 2013-2022 Randolph Voorhies, Shane Grant
79
+ License: BSD 3-Clause "New" or "Revised" License
80
+ Source: https://github.com/USCiLab/cereal
81
+
82
+ Redistribution and use in source and binary forms, with or without
83
+ modification, are permitted provided that the following conditions are met:
84
+
85
+ * Redistributions of source code must retain the above copyright notice, this
86
+ list of conditions and the following disclaimer.
87
+
88
+ * Redistributions in binary form must reproduce the above copyright notice,
89
+ this list of conditions and the following disclaimer in the documentation
90
+ and/or other materials provided with the distribution.
91
+
92
+ * Neither the name of the copyright holder nor the names of its contributors
93
+ may be used to endorse or promote products derived from this software
94
+ without specific prior written permission.
95
+
96
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
97
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
98
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
99
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
100
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
101
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
102
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
103
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
104
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
105
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
106
+
107
+ ================================================================================
108
+ CUDA RUNTIME REDISTRIBUTION NOTICE
109
+ ================================================================================
110
+
111
+ The GPU-accelerated packages (cukks-cu128) may include NVIDIA CUDA Runtime
112
+ libraries. These libraries are redistributed under the NVIDIA CUDA EULA:
113
+ https://docs.nvidia.com/cuda/eula/
114
+
115
+ NVIDIA CUDA Runtime redistribution is permitted for applications that use
116
+ CUDA APIs, as stated in the NVIDIA CUDA EULA Section 2.
117
+
118
+ ================================================================================
cukks-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,326 @@
1
+ Metadata-Version: 2.4
2
+ Name: cukks
3
+ Version: 0.1.0
4
+ Summary: PyTorch-compatible encrypted deep learning inference using CKKS homomorphic encryption
5
+ Author: CuKKS Team
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/devUuung/CuKKS
8
+ Project-URL: Documentation, https://github.com/devUuung/CuKKS#readme
9
+ Project-URL: Repository, https://github.com/devUuung/CuKKS
10
+ Keywords: homomorphic encryption,CKKS,deep learning,PyTorch,privacy,secure inference
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Security :: Cryptography
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ License-File: NOTICE
26
+ Requires-Dist: torch>=2.0
27
+ Requires-Dist: numpy>=1.23
28
+ Provides-Extra: dev
29
+ Requires-Dist: pytest>=7.0; extra == "dev"
30
+ Requires-Dist: pytest-cov>=4.0; extra == "dev"
31
+ Requires-Dist: black>=23.0; extra == "dev"
32
+ Requires-Dist: ruff>=0.1; extra == "dev"
33
+ Requires-Dist: mypy>=1.0; extra == "dev"
34
+ Provides-Extra: cu118
35
+ Requires-Dist: cukks-cu118; extra == "cu118"
36
+ Provides-Extra: cu121
37
+ Requires-Dist: cukks-cu121; extra == "cu121"
38
+ Provides-Extra: cu124
39
+ Requires-Dist: cukks-cu124; extra == "cu124"
40
+ Provides-Extra: cu128
41
+ Requires-Dist: cukks-cu128; extra == "cu128"
42
+ Dynamic: license-file
43
+
44
+ <p align="center">
45
+ <a href="README.md">English</a> |
46
+ <a href="README.ko.md">한국어</a>
47
+ </p>
48
+
49
+ <h1 align="center">CuKKS</h1>
50
+
51
+ <p align="center">
52
+ <strong>GPU-accelerated CKKS Homomorphic Encryption for PyTorch</strong>
53
+ </p>
54
+
55
+ <p align="center">
56
+ <a href="https://github.com/devUuung/CuKKS/actions"><img src="https://github.com/devUuung/CuKKS/actions/workflows/build-wheels.yml/badge.svg" alt="Build Status"></a>
57
+ <a href="https://github.com/devUuung/CuKKS/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
58
+ <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.11-blue.svg" alt="Python 3.11"></a>
59
+ </p>
60
+
61
+ <p align="center">
62
+ Run trained PyTorch models on <strong>encrypted data</strong> — preserving privacy while maintaining accuracy.<br>
63
+ Built on OpenFHE with CUDA acceleration.
64
+ </p>
65
+
66
+ ---
67
+
68
+ ## Quick Start
69
+
70
+ ```python
71
+ import torch.nn as nn
72
+ import cukks
73
+
74
+ # 1. Define and train your model (standard PyTorch)
75
+ model = nn.Sequential(nn.Linear(784, 128), nn.ReLU(), nn.Linear(128, 10))
76
+
77
+ # 2. Convert to encrypted model (polynomial ReLU approximation)
78
+ enc_model, ctx = cukks.convert(model)
79
+
80
+ # 3. Run encrypted inference
81
+ enc_input = ctx.encrypt(test_input)
82
+ enc_output = enc_model(enc_input)
83
+ output = ctx.decrypt(enc_output)
84
+ ```
85
+
86
+ ## Installation
87
+
88
+ ### Automatic (Recommended)
89
+
90
+ ```bash
91
+ pip install cukks # Auto-detects PyTorch's CUDA and installs matching backend
92
+ ```
93
+
94
+ `pip install cukks` detects the CUDA version your PyTorch was built with and automatically installs the matching `cukks-cuXXX` GPU backend. No manual version matching needed.
95
+
96
+ ### Manual
97
+
98
+ ```bash
99
+ pip install cukks-cu121 # Explicitly install for CUDA 12.1
100
+ ```
101
+
102
+ | Package | CUDA | Supported GPUs |
103
+ |---------|------|----------------|
104
+ | `cukks-cu118` | 11.8 | V100, T4, RTX 20/30/40xx, A100, H100 |
105
+ | `cukks-cu121` | 12.1 | V100, T4, RTX 20/30/40xx, A100, H100 |
106
+ | `cukks-cu124` | 12.4 | V100, T4, RTX 20/30/40xx, A100, H100 |
107
+ | `cukks-cu128` | 12.8 | All above + **RTX 50xx** |
108
+
109
+ Or use extras: `pip install cukks[cu121]`
110
+
111
+ <details>
112
+ <summary><strong>Post-install CLI & environment variables</strong></summary>
113
+
114
+ ```bash
115
+ cukks-install-backend # Auto-detect & install
116
+ cukks-install-backend cu128 # Install specific backend
117
+ cukks-install-backend --status # Show CUDA compatibility status
118
+ cukks-install-backend --dry-run # Preview without installing
119
+ ```
120
+
121
+ | Variable | Effect |
122
+ |----------|--------|
123
+ | `CUKKS_BACKEND=cukks-cu128` | Force a specific backend |
124
+ | `CUKKS_NO_BACKEND=1` | Skip backend (CPU-only) |
125
+
126
+ </details>
127
+
128
+ <details>
129
+ <summary><strong>Docker images</strong></summary>
130
+
131
+ | CUDA | Compatible Docker Images |
132
+ |------|-------------------------|
133
+ | 11.8 | `pytorch/pytorch:2.1.0-cuda11.8-cudnn8-runtime` |
134
+ | 12.1 | `pytorch/pytorch:2.2.0-cuda12.1-cudnn8-runtime` |
135
+ | 12.4 | `pytorch/pytorch:2.4.0-cuda12.4-cudnn9-runtime` |
136
+ | 12.8 | `nvidia/cuda:12.8.0-cudnn9-runtime-ubuntu22.04` |
137
+
138
+ ```bash
139
+ docker run --gpus all -it pytorch/pytorch:2.2.0-cuda12.1-cudnn8-runtime bash
140
+ pip install cukks # auto-detects CUDA 12.1
141
+ ```
142
+
143
+ </details>
144
+
145
+ <details>
146
+ <summary><strong>Build from source</strong></summary>
147
+
148
+ ```bash
149
+ git clone https://github.com/devUuung/CuKKS.git && cd CuKKS
150
+ pip install -e .
151
+
152
+ # Build OpenFHE backend
153
+ cd openfhe-gpu-public && mkdir build && cd build
154
+ cmake .. -DWITH_CUDA=ON && make -j$(nproc)
155
+
156
+ cd ../../bindings/openfhe_backend
157
+ pip install -e .
158
+ ```
159
+
160
+ </details>
161
+
162
+ ## Features
163
+
164
+ | Feature | Description |
165
+ |---------|-------------|
166
+ | **PyTorch API** | Familiar interface — just call `cukks.convert(model)` |
167
+ | **GPU Acceleration** | CUDA-accelerated HE operations via OpenFHE |
168
+ | **Auto Optimization** | BatchNorm folding, BSGS matrix multiplication |
169
+ | **Wide Layer Support** | Linear, Conv2d, ReLU/GELU/SiLU, Pool, LayerNorm, Attention |
170
+
171
+ ## Supported Layers
172
+
173
+ | Layer | Encrypted Version | Notes |
174
+ |-------|------------------|-------|
175
+ | `nn.Linear` | `EncryptedLinear` | BSGS optimization |
176
+ | `nn.Conv2d` | `EncryptedConv2d` | im2col method |
177
+ | `nn.ReLU/GELU/SiLU` | Polynomial approx | Configurable degree |
178
+ | `nn.AvgPool2d` | `EncryptedAvgPool2d` | Rotation-based |
179
+ | `nn.BatchNorm` | Folded | Merged into prev layer |
180
+ | `nn.LayerNorm` | `EncryptedLayerNorm` | Polynomial approx |
181
+ | `nn.Attention` | `EncryptedApproxAttention` | seq_len=1 |
182
+
183
+ <details>
184
+ <summary><strong>Full layer support table</strong></summary>
185
+
186
+ | PyTorch Layer | Encrypted Version | Notes |
187
+ |--------------|-------------------|-------|
188
+ | `nn.Linear` | `EncryptedLinear` | Full support with BSGS optimization |
189
+ | `nn.Conv2d` | `EncryptedConv2d` | Via im2col method |
190
+ | `nn.ReLU` | `EncryptedReLU` | Polynomial approximation |
191
+ | `nn.GELU` | `EncryptedGELU` | Polynomial approximation |
192
+ | `nn.SiLU` | `EncryptedSiLU` | Polynomial approximation |
193
+ | `nn.Sigmoid` | `EncryptedSigmoid` | Polynomial approximation |
194
+ | `nn.Tanh` | `EncryptedTanh` | Polynomial approximation |
195
+ | `nn.AvgPool2d` | `EncryptedAvgPool2d` | Full support |
196
+ | `nn.MaxPool2d` | `EncryptedMaxPool2d` | Approximate via polynomial |
197
+ | `nn.Flatten` | `EncryptedFlatten` | Logical reshape |
198
+ | `nn.BatchNorm1d/2d` | Folded | Merged into preceding layer |
199
+ | `nn.Sequential` | `EncryptedSequential` | Full support |
200
+ | `nn.Dropout` | `EncryptedDropout` | No-op during inference |
201
+ | `nn.LayerNorm` | `EncryptedLayerNorm` | Pure HE polynomial approximation |
202
+ | `nn.MultiheadAttention` | `EncryptedApproxAttention` | Polynomial softmax (seq_len=1) |
203
+
204
+ </details>
205
+
206
+ ## Activation Functions
207
+
208
+ CKKS only supports polynomial operations. CuKKS approximates activations (ReLU, GELU, SiLU, etc.) using polynomial fitting:
209
+
210
+ ```python
211
+ # Default: degree-4 polynomial approximation (recommended)
212
+ enc_model, ctx = cukks.convert(model)
213
+
214
+ # Higher degree for better accuracy (costs more multiplicative depth)
215
+ enc_model, ctx = cukks.convert(model, activation_degree=8)
216
+ ```
217
+
218
+ The default `activation_degree=4` provides a good balance between accuracy and depth consumption. Higher degrees approximate the original activation more closely but require deeper circuits.
219
+
220
+ ## GPU Acceleration
221
+
222
+ | Operation | Accelerated |
223
+ |-----------|-------------|
224
+ | Add/Sub/Mul/Square | ✅ GPU |
225
+ | Rotate/Rescale | ✅ GPU |
226
+ | Bootstrap | ✅ GPU |
227
+ | Encrypt/Decrypt | CPU |
228
+
229
+ ```python
230
+ from ckks.torch_api import CKKSContext, CKKSConfig
231
+
232
+ config = CKKSConfig(poly_mod_degree=8192, scale_bits=40)
233
+ ctx = CKKSContext(config, enable_gpu=True) # GPU enabled by default
234
+ ```
235
+
236
+ ## Examples
237
+
238
+ ```bash
239
+ # Quick demo (no GPU required)
240
+ python -m cukks.examples.encrypted_inference --demo conversion
241
+
242
+ # MNIST encrypted inference
243
+ python examples/mnist_encrypted.py --hidden 64 --samples 5
244
+ ```
245
+
246
+ <details>
247
+ <summary><strong>CNN example</strong></summary>
248
+
249
+ ```python
250
+ import torch.nn as nn
251
+ import cukks
252
+
253
+ class MNISTCNN(nn.Module):
254
+ def __init__(self):
255
+ super().__init__()
256
+ self.conv1 = nn.Conv2d(1, 8, kernel_size=3, padding=1)
257
+ self.act1 = nn.ReLU()
258
+ self.pool1 = nn.AvgPool2d(2)
259
+ self.flatten = nn.Flatten()
260
+ self.fc = nn.Linear(8 * 14 * 14, 10)
261
+
262
+ def forward(self, x):
263
+ return self.fc(self.flatten(self.pool1(self.act1(self.conv1(x)))))
264
+
265
+ model = MNISTCNN()
266
+ enc_model, ctx = cukks.convert(model)
267
+
268
+ enc_input = ctx.encrypt(image)
269
+ prediction = ctx.decrypt(enc_model(enc_input)).argmax()
270
+ ```
271
+
272
+ > **Note**: All operations in `forward()` must be layer attributes (e.g., `self.act1`), not inline operations like `x ** 2`.
273
+
274
+ </details>
275
+
276
+ <details>
277
+ <summary><strong>Batch processing</strong></summary>
278
+
279
+ ```python
280
+ # Pack multiple samples into a single ciphertext (SIMD)
281
+ samples = [torch.randn(784) for _ in range(8)]
282
+ enc_batch = ctx.encrypt_batch(samples)
283
+ enc_output = enc_model(enc_batch)
284
+ outputs = ctx.decrypt_batch(enc_output, num_samples=8)
285
+ ```
286
+
287
+ </details>
288
+
289
+ ## Troubleshooting
290
+
291
+ | Issue | Solution |
292
+ |-------|----------|
293
+ | Out of Memory | Reduce `poly_mod_degree` (8192 instead of 16384) |
294
+ | Low Accuracy | Increase `activation_degree` (e.g., 8 or 16) for better approximation |
295
+ | Slow Performance | Enable batch processing, reduce network depth |
296
+
297
+ ## Documentation
298
+
299
+ - [API Reference](docs/api.md)
300
+ - [GPU Acceleration Guide](docs/gpu-acceleration.md)
301
+ - [CKKS Concepts](docs/concepts.md)
302
+
303
+ ## License
304
+
305
+ Apache License 2.0
306
+
307
+ ## Citation
308
+
309
+ ```bibtex
310
+ @software{cukks,
311
+ title = {CuKKS: PyTorch-compatible Encrypted Deep Learning},
312
+ year = {2024},
313
+ url = {https://github.com/devUuung/CuKKS}
314
+ }
315
+ ```
316
+
317
+ ## Related
318
+
319
+ ### Libraries
320
+ - [OpenFHE](https://github.com/openfheorg/openfhe-development) — Underlying HE library
321
+ - [Microsoft SEAL](https://github.com/microsoft/SEAL) — Alternative HE library
322
+
323
+ ### Papers
324
+ - [Homomorphic Encryption for Arithmetic of Approximate Numbers](https://eprint.iacr.org/2016/421) — Cheon et al. (CKKS)
325
+ - [Bootstrapping for Approximate Homomorphic Encryption](https://eprint.iacr.org/2018/153) — Cheon et al.
326
+ - [Faster Homomorphic Linear Transformations in HElib](https://eprint.iacr.org/2018/244) — Halevi & Shoup (BSGS)