Skip to content

Commit

Permalink
docs(frontend): change banner position
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxizama authored and BourgerieQuentin committed Aug 19, 2024
1 parent c3bcdc7 commit 572b2d5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 26 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@
<a href="https://slsa.dev"><img alt="SLSA 3" src="https://slsa.dev/images/gh-badge-level3.svg" /></a>
</p>

>[!Note]
>**Zama 5-Question Developer Survey**
>
>We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. 👉 **[Click here](https://www.zama.ai/developer-survey)** to participate.


## About

Expand All @@ -35,6 +32,7 @@ Concrete is a versatile library that can be used for a variety of purposes. For
<br></br>



## Table of Contents
- **[Getting Started](#getting-started)**
- [Installation](#installation)
Expand All @@ -50,6 +48,7 @@ Concrete is a versatile library that can be used for a variety of purposes. For
- **[Support](#support)**
<br></br>


## Getting Started

### Installation
Expand Down Expand Up @@ -120,6 +119,11 @@ assert result == add(2, 6)
<a href="#about" > ↑ Back to top </a>
</p>

>[!Note]
>**Zama 5-Question Developer Survey**
>
>We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. **[👉 Click here](https://www.zama.ai/developer-survey)** to participate.
## Resources

### Concrete deep dive
Expand Down
11 changes: 5 additions & 6 deletions docs/core-features/table_lookups.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Table lookup

{% hint style="success" %}
**Zama 5-Question Developer Survey**

We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. **👉** [**Click here**](https://www.zama.ai/developer-survey) to participate.
{% endhint %}



In TFHE, there exists mainly two operations: the linear operations (additions, subtractions, multiplications by integers) and the rest. And the rest is done with table lookups (TLUs), which means that a lot of things are done with TLU. In this document, we explain briefly, from a user point of view, how TLU can be used. In [the TLU advanced documentation](table_lookups_advanced.md), we enter a bit more into the details.
Expand Down Expand Up @@ -228,3 +222,8 @@ for i in range(16):
], f"Miscomputation {i=} {circuit.encrypt_run_decrypt(i)} {[lower_i**2, upper_i**2]}"
```

{% hint style="success" %}
**Zama 5-Question Developer Survey**

We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. **👉** [**Click here**](https://www.zama.ai/developer-survey) to participate.
{% endhint %}
14 changes: 6 additions & 8 deletions docs/get-started/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

This document covers how to compute on encrypted data homomorphically using the **Concrete** framework. We will walk you through a complete example step-by-step.

{% hint style="success" %}
**Zama 5-Question Developer Survey**

We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. **👉** [**Click here**](https://www.zama.ai/developer-survey) to participate.
{% endhint %}





The basic workflow of computation is as follows:
Expand Down Expand Up @@ -157,3 +149,9 @@ encrypted_x, encrypted_y = circuit.encrypt(2, 6)
encrypted_result = circuit.run(encrypted_x, encrypted_y)
result = circuit.decrypt(encrypted_result)
```

{% hint style="success" %}
**Zama 5-Question Developer Survey**

We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. **👉** [**Click here**](https://www.zama.ai/developer-survey) to participate.
{% endhint %}
17 changes: 9 additions & 8 deletions docs/tutorials/see-all-tutorials.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
# See all tutorials

{% hint style="success" %}
**Zama 5-Question Developer Survey**
### Start here

We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. **👉** [**Click here**](https://www.zama.ai/developer-survey) to participate.
{% endhint %}

### Start here&#x20;

* [Part I - Concrete, Zama's Fully Homomorphic Encryption Compiler](https://www.zama.ai/post/zama-concrete-fully-homomorphic-encryption-compiler)&#x20;
* [Part I - Concrete, Zama's Fully Homomorphic Encryption Compiler](https://www.zama.ai/post/zama-concrete-fully-homomorphic-encryption-compiler)
* [Part II - The Architecture of Concrete, Zama's Fully Homomorphic Encryption Compiler Leveraging MLIR](https://www.zama.ai/post/the-architecture-of-concrete-zama-fully-homomorphic-encryption-compiler-leveraging-mlir)

### Go further
Expand All @@ -34,3 +28,10 @@ We want to hear from you! Take 1 minute to share your thoughts and helping us en
* [How to use dynamic table look-ups using Concrete](https://www.zama.ai/post/video-tutorial-how-to-use-dynamic-table-look-ups-using-concrete) - October 2023
* [Dive into Concrete - Zama's Fully Homomorphic Encryption Compiler](https://www.zama.ai/post/video-tutorial-dive-into-concrete-zamas-fully-homomorphic-encryption-compiler) - October 2023
* [How To Get Started With Concrete - Zama's Fully Homomorphic Encryption Compiler](https://www.zama.ai/post/how-to-started-with-concrete-zama-fully-homomorphic-encryption-compiler) - July 2023


{% hint style="success" %}
**Zama 5-Question Developer Survey**

We want to hear from you! Take 1 minute to share your thoughts and helping us enhance our documentation and libraries. **👉** [**Click here**](https://www.zama.ai/developer-survey) to participate.
{% endhint %}

0 comments on commit 572b2d5

Please sign in to comment.