This file contains hidden or 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
| diff --git a/toolboxes/Dockerfile.rocm7-custom b/toolboxes/Dockerfile.rocm7-custom | |
| new file mode 100644 | |
| index 0000000..4256322 | |
| --- /dev/null | |
| +++ b/toolboxes/Dockerfile.rocm7-custom | |
| @@ -0,0 +1,130 @@ | |
| +# build | |
| +FROM registry.fedoraproject.org/fedora:43 AS builder | |
| + | |
| +RUN dnf -y --nodocs --setopt=install_weak_deps=False install \ |
This file contains hidden or 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
| Category ID | Category Name | Description | Parent ID | Parent Name | Default Location ID | Keywords | Category Path | Parts | structural | |
|---|---|---|---|---|---|---|---|---|---|---|
| 11 | Félvezetők | Félvezetők | 0 | 0 | ||||||
| 12 | Diódák | 11 | Félvezetők | Félvezetők/Diódák | 0 | 0 | ||||
| 13 | Univerzális diódák | 12 | Diódák | Félvezetők/Diódák/Univerzális diódák | 0 | 0 | ||||
| 14 | Univerzális SMD diódák | 13 | Univerzális diódák | Félvezetők/Diódák/Univerzális diódák/Univerzális SMD diódák | 0 | 0 | ||||
| 15 | Univerzális THT diódák | 13 | Univerzális diódák | Félvezetők/Diódák/Univerzális diódák/Univerzális THT diódák | 0 | 0 | ||||
| 16 | Univerzális csavaros diódák | 13 | Univerzális diódák | Félvezetők/Diódák/Univerzális diódák/Univerzális csavaros diódák | 0 | 0 | ||||
| 17 | Egyéb diódák | 13 | Univerzális diódák | Félvezetők/Diódák/Univerzális diódák/Egyéb diódák | 0 | 0 | ||||
| 18 | Schottky diódák | 12 | Diódák | Félvezetők/Diódák/Schottky diódák | 0 | 0 | ||||
| 19 | Schottky SMD diódák | 18 | Schottky diódák | Félvezetők/Diódák/Schottky diódák/Schottky SMD diódák | 0 | 0 |
This file contains hidden or 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
| """ | |
| A* Algorithm implementation in Python. | |
| Written by: James Sigurðarson (jamiees2) | |
| Source: https://gist.github.com/jamiees2/5531924 | |
| Modified by Rick Henderson | |
| May 5, 2016: Began updating to Python 3.x. Also improved spacing and comments. | |
| Converted xrange() to range(). Converted raw_input() to input(). | |
| """ |