tfhe 1.6.3 → 1.7.0
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.
- package/README.md +5 -8
- package/package.json +1 -1
- package/tfhe.d.ts +87 -781
- package/tfhe.js +481 -4660
- package/tfhe_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -149,6 +149,10 @@ To run this code, use the following command:
|
|
|
149
149
|
> Note that when running code that uses `TFHE-rs`, it is highly recommended
|
|
150
150
|
to run in release mode with cargo's `--release` flag to have the best performance possible.
|
|
151
151
|
|
|
152
|
+
> [!Tip]
|
|
153
|
+
> On Linux, enabling transparent huge pages gives a noticeable additional speedup when using many threads.
|
|
154
|
+
See [System tuning](https://docs.zama.org/tfhe-rs/configuration/system-tuning) for details.
|
|
155
|
+
|
|
152
156
|
*Find an example with more explanations in [this part of the documentation](https://docs.zama.org/tfhe-rs/get-started/quick-start)*
|
|
153
157
|
|
|
154
158
|
<p align="right">
|
|
@@ -227,14 +231,7 @@ To cite TFHE-rs in academic papers, please use the following entry:
|
|
|
227
231
|
```
|
|
228
232
|
|
|
229
233
|
### Contributing
|
|
230
|
-
|
|
231
|
-
There are two ways to contribute to TFHE-rs:
|
|
232
|
-
|
|
233
|
-
- [Open issues](https://github.com/zama-ai/tfhe-rs/issues/new/choose) to report bugs and typos, or to suggest new ideas
|
|
234
|
-
- Request to become an official contributor by emailing [hello@zama.org](mailto:hello@zama.org).
|
|
235
|
-
|
|
236
|
-
Becoming an approved contributor involves signing our Contributor License Agreement (CLA). Only approved contributors can send pull requests, so please make sure to get in touch before you do!
|
|
237
|
-
<br></br>
|
|
234
|
+
This repository uses an **issue-first contribution workflow**. Read [this](CONTRIBUTING.md) for more details.
|
|
238
235
|
|
|
239
236
|
### License
|
|
240
237
|
This software is distributed under the **BSD-3-Clause-Clear** license. Read [this](LICENSE) for more details.
|
package/package.json
CHANGED