From 3909f394b5df6b99aac356f3889e96bb57bd8880 Mon Sep 17 00:00:00 2001 From: Yuval Shekel Date: Thu, 29 Aug 2024 18:27:09 +0300 Subject: [PATCH] more docs update --- docs/docs/icicle/{install_and_use.md => getting_started.md} | 3 +-- docs/docs/icicle/install_cuda_backend.md | 2 +- docs/docs/icicle/overview.md | 2 +- docs/docs/introduction.md | 2 +- docs/sidebars.js | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) rename docs/docs/icicle/{install_and_use.md => getting_started.md} (99%) diff --git a/docs/docs/icicle/install_and_use.md b/docs/docs/icicle/getting_started.md similarity index 99% rename from docs/docs/icicle/install_and_use.md rename to docs/docs/icicle/getting_started.md index ce5032520..f6ee6cc8d 100644 --- a/docs/docs/icicle/install_and_use.md +++ b/docs/docs/icicle/getting_started.md @@ -69,13 +69,12 @@ Each ICICLE release includes a tar file named `icicle30-.tar.gz`, - When compiling your C++ application, link against the ICICLE libraries: ```bash g++ -o myapp myapp.cpp -licicle_device -licicle_field_bn254 -licicle_curve_bn254 - # if not installed in standard dirs, for example /custom/path/, need to specify it g++ -o myapp myapp.cpp -I/custom/path/icicle/include -L/custom/path/icicle/lib -licicle_device -licicle_field_bn254 -licicle_curve_bn254 -Wl,-rpath,/custom/path/icicle/lib/ ``` - Or via cmake - ```cmake + ```bash # Add the executable add_executable(example example.cpp) # Link the libraries diff --git a/docs/docs/icicle/install_cuda_backend.md b/docs/docs/icicle/install_cuda_backend.md index 20166651d..8e448757b 100644 --- a/docs/docs/icicle/install_cuda_backend.md +++ b/docs/docs/icicle/install_cuda_backend.md @@ -7,7 +7,7 @@ The CUDA backend in ICICLE V3 is a high-performance, closed-source component des ## Installation -The CUDA backend is a closed-source component that requires a license. [To install the CUDA backend, see here](./install_and_use#installing-and-using-icicle). +The CUDA backend is a closed-source component that requires a license. [To install the CUDA backend, see here](./getting_started#installing-and-using-icicle). ### Licensing diff --git a/docs/docs/icicle/overview.md b/docs/docs/icicle/overview.md index e809eb24d..49fb67ecc 100644 --- a/docs/docs/icicle/overview.md +++ b/docs/docs/icicle/overview.md @@ -69,7 +69,7 @@ ICICLE is also well-suited for prototyping and developing small-scale projects. ## Get Started with ICICLE -Explore the full capabilities of ICICLE by diving into the [Architecture](./arch_overview.md), [Getting Started Guide](./install_and_use.md) and the [programmers guide](./programmers_guide/general.md) to learn how to integrate, deploy, and extend ICICLE across different backends. +Explore the full capabilities of ICICLE by diving into the [Architecture](./arch_overview.md), [Getting Started Guide](./getting_started.md) and the [programmers guide](./programmers_guide/general.md) to learn how to integrate, deploy, and extend ICICLE across different backends. If you have any questions or need support, feel free to reach out on [Discord] or [GitHub](https://github.com/ingonyama-zk). We're here to help you accelerate your ZK development with ICICLE. diff --git a/docs/docs/introduction.md b/docs/docs/introduction.md index c8d414fe0..4a89da9fa 100644 --- a/docs/docs/introduction.md +++ b/docs/docs/introduction.md @@ -13,7 +13,7 @@ Currently our flagship products are: #### **ICICLE V3** [ICICLE V3](https://github.com/ingonyama-zk/icicle) is a versatile cryptography library designed to support multiple compute backends, including CUDA, CPU, and potentially others like Metal, WebGPU, Vulkan, and ZPU. Originally focused on GPU acceleration, ICICLE has evolved to offer backend-agnostic cryptographic acceleration, allowing you to build ZK provers or other cryptographic applications with ease, leveraging the best available hardware for your needs. -- **Multiple Backend Support:** Develop on CPU and deploy on various backends including CUDA, Metal, WebGPU, Vulkan, ZPU, or even remote machines. +- **Multiple Backend Support:** Develop on CPU and deploy on various backends including CUDA and potentially Metal, WebGPU, Vulkan, ZPU, or even remote machines. - **Cross-Language Compatibility:** Use ICICLE across multiple programming languages such as C++, Rust, Go, and possibly Python. - **Optimized for ZKPs:** Accelerate cryptographic operations like elliptic curve operations, MSM, NTT, Poseidon hash, and more. diff --git a/docs/sidebars.js b/docs/sidebars.js index c28ded97a..661c139f7 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -50,7 +50,7 @@ module.exports = { label: "Getting started", link: { type: `doc`, - id: "icicle/install_and_use", + id: "icicle/getting_started", }, collapsed: false, items: [