-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR contains contributions for the v1.1 release of Riallto. * Beta Linux support + Installation scripts for Ubuntu 24.04 using the 6.10 Linux kernel. + A docker based installation flow for Linux * Upgrade flows for Ryzen AI SW to v1.1 * Hawkpoint support * bfloat16 support * Improvements for combining multiple kernels. * Improvements to nputop (Windows) * Visualisation fixes * Fixes to sequence codegen --------- Co-authored-by: Shane Fleming <[email protected]> Co-authored-by: Mario Ruiz <[email protected]> Co-authored-by: skalade <[email protected]>
- Loading branch information
Showing
55 changed files
with
1,174 additions
and
254 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (C) 2023 Advanced Micro Devices, Inc. All rights reserved. | ||
# SPDX-License-Identifier: MIT | ||
|
||
docker container stop riallto_ci || true | ||
docker container wait riallto_ci || true | ||
|
||
docker run -dit --rm --name riallto_ci \ | ||
--cap-add=NET_ADMIN \ | ||
-v $(pwd):/workspace \ | ||
--device=/dev/accel/accel0:/dev/accel/accel0 \ | ||
-w /workspace \ | ||
riallto:latest \ | ||
/bin/bash | ||
|
||
docker exec -i riallto_ci /bin/bash -c "source ~/.bashrc && cd /workspace/ && python3 -m pip install . && python3 -m pytest ./tests" | ||
|
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,44 @@ | ||
name: Linux Riallto CI Testing | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'README.md' | ||
- 'CONTRIBUTING.md' | ||
- 'LICENSE**' | ||
- 'notebooks/**' | ||
- 'scripts/utils/**' | ||
- 'scripts/wsl/**' | ||
- '**/*.ipynb' | ||
- '.github/ISSUE_TEMPLATE/**' | ||
- '.github/*.md' | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened] | ||
paths-ignore: | ||
- 'README.md' | ||
- 'CONTRIBUTING.md' | ||
- 'LICENSE**' | ||
- 'notebooks/**' | ||
- 'scripts/utils/**' | ||
- 'scripts/wsl/**' | ||
- '**/*.ipynb' | ||
- '.github/ISSUE_TEMPLATE/**' | ||
- '.github/*.md' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
birman-tests: | ||
name: not-birman-15-linux-tests | ||
runs-on: self-hosted-linux | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: run pytests | ||
run: | | ||
ls ./ | ||
./.github/workflows/linux_ci_script.sh |
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
Oops, something went wrong.