Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding updates to the README, LICENSE, and license headers. #34

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
142 changes: 60 additions & 82 deletions LICENCE

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# tt-forge
tt-forge is our front end compiler project aimed at utitlizing our latest [tt-mlir](https://github.com/tenstorrent/tt-mlir) project.
This is a continuation of our work in [tt-buda](https://github.com/tenstorrent/tt-buda) and is built using some of the same functionality from that compiler.

Project goals
-----
- Provide abstraction of many different frontend frameworks
- Generically compile many kinds of model architectures without modification and with good performance
- Abstract all Tenstorrent device architectures

Building dependencies
-----
* `cmake3.20`
Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/mlir/mnist/test_inference.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import torch
from torch import nn

Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/mlir/mnist/test_training.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import torch
from torch import nn

Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/mlir/mnist/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

from datetime import datetime

import torch
Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/mlir/test_ops.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import os

import torch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import pybuda
from pybuda.verify.backend import verify_module
from pybuda import VerifyConfig
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import pybuda
from pybuda.verify.backend import verify_module
from pybuda import VerifyConfig
Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/model_demos/high_prio/cnn/onnx/test_yolo_x.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import pybuda, os
import pytest
import cv2, torch
Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/model_demos/high_prio/cnn/pytorch/test_dla.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import os

import pybuda
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import pybuda
from pybuda.verify.backend import verify_module
from pybuda import VerifyConfig
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import pybuda
from pybuda.verify.backend import verify_module
from pybuda import VerifyConfig
Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/operators/tm/fuse/test_fuse_tm_sequence.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import pybuda
import pybuda.op
from pybuda import PyBudaModule
Expand Down
4 changes: 4 additions & 0 deletions pybuda/test/test_api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import os
import pytest
import torch
Expand Down
4 changes: 4 additions & 0 deletions scripts/gitlab_single_job_history.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC

# SPDX-License-Identifier: Apache-2.0

import datetime

import gitlab
Expand Down
Loading