-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ee6122
commit e157b41
Showing
4 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
# Summary | ||
|
||
[Introduction](./introduction.md) | ||
# Introduction | ||
- [Introduction](./introduction.md) | ||
|
||
# User Guide | ||
# Project setup | ||
- [Building](./build.md) | ||
|
||
- [Building](./build.md) | ||
# User Guide | ||
- [Getting Started](./getting-started.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Building | ||
|
||
Following page describes how to build the project on your local machine. | ||
|
||
## Prerequisites | ||
Main project dependencies are: | ||
1. Clang 17 | ||
1. Ninja | ||
1. CMake 3.20 or higher | ||
1. Git LFS | ||
1. Python 3.10 or higher | ||
|
||
On Ubuntu 22.04 systems, you can install these dependencies using the following commands: | ||
```sh | ||
# Update package list | ||
sudo apt update -y | ||
sudo apt upgrade -y | ||
|
||
# Install Clang | ||
sudo apt install clang-17 | ||
|
||
# Install Ninja | ||
sudo apt install ninja-build | ||
|
||
# Install CMake | ||
sudo apt remove cmake -y | ||
pip3 install cmake --upgrade | ||
cmake --version | ||
|
||
# Install Git LFS | ||
sudo apt install git-lfs | ||
|
||
# Check Python version | ||
python3 --version | ||
``` | ||
|
||
## Build environment | ||
Environment is built only once, and it setups Python venv, TT-MLIR, LLVM, and other dependencies. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters