mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
The rust bindings are intented to access both LLVM/MLIR CAPI as well as the concrete-compiler one. This initial commit provide the API for LLVM/MLIR only. Tests should be used as an example to how to generate a valid DAG of operations in MLIR.
56 lines
498 B
Plaintext
56 lines
498 B
Plaintext
## C++
|
|
|
|
# Prerequisites
|
|
*.d
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
*.smod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
|
|
# VSCODE
|
|
.vscode/
|
|
|
|
# Jetbrains tools
|
|
.idea/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
|
|
# Sphinx
|
|
_build/
|
|
.venv
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
|
|
compiler/tests/TestLib/out/
|
|
compiler/lib/Bindings/Rust/target/
|
|
compiler/lib/Bindings/Rust/Cargo.lock
|