Skip to content

Commit

Permalink
Merge branch 'main' into npetrovic/tilize-sweeps-new
Browse files Browse the repository at this point in the history
  • Loading branch information
npetrovic-tenstorrent authored Dec 11, 2024
2 parents c6979fa + 71cb582 commit d06c47a
Show file tree
Hide file tree
Showing 7 changed files with 5,277 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ttnn-run-sweeps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ on:
- data_movement.squeeze.squeeze_pytorch2
- data_movement.embedding.embedding_pytorch2
- data_movement.view.view_pytorch2
- data_movement.view.view_tt_torch
schedule:
- cron: "0 21 * * *" # This cron schedule runs the workflow at 9:00pm UTC nightly

Expand Down
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ models/perf/benchmarking_utils.py @skhorasganiTT

# docs
docs/Makefile @tenstorrent/metalium-developers-infra
docs/source/ttnn/dependencies/tt_lib.rst @eyonland @patrickroberts @yan-zaretskiy @ayerofieiev-tt
docs/source/ttnn/ttnn/dependencies/tt_lib.rst @eyonland @patrickroberts @yan-zaretskiy @ayerofieiev-tt
docs/source/ttnn/ @eyonland @patrickroberts @yan-zaretskiy @ayerofieiev-tt @razorback3 @dongjin-na

# misc
Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ set up for users.

Please refer to the [README](README.md) for source installation and environment
setup instructions, then please read the [Getting Started
page](docs/source/get_started/get_started.rst).
page](docs/source/tt-metalium/get_started/get_started.rst).

### Setting logger level

Expand All @@ -112,7 +112,7 @@ TT_METAL_LOGGER_LEVEL=Debug ./build/test/tt_metal/test_add_two_ints
### Building and viewing the documentation locally

1. First, ensure that you have [built the project and activated the Python
environment](docs/source/get_started/get_started.rst), along with any required
environment](docs/source/tt-metalium/get_started/get_started.rst), along with any required
`PYTHONPATH` variables.

2. Build the HTML documentation.
Expand Down Expand Up @@ -300,7 +300,7 @@ running such tests.
- To debug the C++ binding file itself:
- Ensure the python file you wish to debug is standalone and has a main function.
- Run `gdb --args python <python file>`
- Breakpoints can be added for future loaded libraries. For example, to add a breakpoint to `Device` object construtor:
- Breakpoints can be added for future loaded libraries. For example, to add a breakpoint to `Device` object constructor:
```
(gdb) b device.cpp:Device::Device
No source file named device.cpp.
Expand Down Expand Up @@ -353,7 +353,7 @@ TT_METAL_WATCHER=10 ./your_program
- If no such error is reported, but the program is hanging, check the watcher log generated in `generated/watcher/watcher.log`. There is a legend at the top of the log showing how to interpret it, and a sample portion of a log is shown below:
```
Legend:
Comma separated list specifices waypoint for BRISC,NCRISC,TRISC0,TRISC1,TRISC2
Comma separated list specifies waypoint for BRISC,NCRISC,TRISC0,TRISC1,TRISC2
I=initialization sequence
W=wait (top of spin loop)
R=run (entering kernel)
Expand Down Expand Up @@ -528,7 +528,7 @@ To set up pre-commit on your local machine, follow these steps:
on the link to [all post-commit workflows](https://github.com/tenstorrent/tt-metal/actions/workflows/all-post-commit-workflows.yaml), clicking "Run workflow",
selecting your branch, and pressing "Run workflow".

![Dropdown menu of all post-commit workflows and Run Workflow button](docs/source/_static/all-post-commit-workflows-button.png)
![Dropdown menu of all post-commit workflows and Run Workflow button](docs/source/common/_static/all-post-commit-workflows-button.png)

You can see the status of your CI run by clicking on the specific run you
dispatched.
Expand Down
4 changes: 2 additions & 2 deletions tests/sweep_framework/sweeps/data_movement/reshape/reshape.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def gen_reshape_shape(input_shape, step=1):
"input_shape": gen_shapes([1, 1, 1, 1], [6, 6, 256, 256], [1, 1, 1, 1], 16)
+ gen_shapes([1, 1, 1], [6, 256, 256], [1, 1, 1], 16)
+ gen_shapes([1, 1], [256, 256], [1, 1], 16),
"input_a_dtype": [ttnn.bfloat16, ttnn.bfloat8_b],
"input_a_layout": [ttnn.TILE_LAYOUT], # ttnn.ROW_MAJOR_LAYOUT
"input_a_dtype": [ttnn.bfloat16, ttnn.float32],
"input_a_layout": [ttnn.TILE_LAYOUT, ttnn.ROW_MAJOR_LAYOUT], # ttnn.ROW_MAJOR_LAYOUT
"input_a_memory_config": [ttnn.DRAM_MEMORY_CONFIG, ttnn.L1_MEMORY_CONFIG],
},
}
Expand Down
Loading

0 comments on commit d06c47a

Please sign in to comment.