├── .github └── workflows │ ├── actionlint.yml │ ├── docs.yml │ └── spellcheck.yml ├── .markdownlint-cli2.yaml ├── .spellcheck-en-custom.txt ├── .spellcheck.yml ├── LICENSE ├── Makefile ├── README.md ├── TERMS.md ├── images ├── bootc-example.png ├── hf-access-tokens.png ├── mixtral-agree.png └── rhel-ai-developer-preview.png └── training ├── Makefile ├── README.md ├── amd-bootc ├── Containerfile ├── Makefile └── rocm.repo ├── cloud └── Makefile ├── common ├── Makefile.common └── usr │ ├── lib │ └── systemd │ │ └── system │ │ ├── bootc-generic-growpart.service │ │ └── local-fs.target.wants │ │ └── bootc-generic-growpart.service │ └── libexec │ └── bootc-generic-growpart ├── deepspeed ├── Containerfile └── Makefile ├── ilab-wrapper ├── ilab ├── ilab-qlora └── ilab-training-launcher ├── instructlab └── Makefile ├── intel-bootc ├── Containerfile └── Makefile ├── model ├── Containerfile └── Makefile ├── nvidia-bootc ├── Containerfile ├── Containerfile.builder ├── Makefile ├── nvidia-toolkit-firstboot.service └── x509-configuration.ini ├── tests ├── e2e-tests │ ├── ansible.cfg │ └── playbook.yml └── provision │ ├── ansible.cfg │ ├── playbook.yml │ ├── requirements.yml │ └── templates │ └── Containerfile.j2 └── vllm ├── Containerfile ├── Makefile └── mixtral.jinja /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.spellcheck-en-custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/.spellcheck-en-custom.txt -------------------------------------------------------------------------------- /.spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/.spellcheck.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/README.md -------------------------------------------------------------------------------- /TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/TERMS.md -------------------------------------------------------------------------------- /images/bootc-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/images/bootc-example.png -------------------------------------------------------------------------------- /images/hf-access-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/images/hf-access-tokens.png -------------------------------------------------------------------------------- /images/mixtral-agree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/images/mixtral-agree.png -------------------------------------------------------------------------------- /images/rhel-ai-developer-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/images/rhel-ai-developer-preview.png -------------------------------------------------------------------------------- /training/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/Makefile -------------------------------------------------------------------------------- /training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/README.md -------------------------------------------------------------------------------- /training/amd-bootc/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/amd-bootc/Containerfile -------------------------------------------------------------------------------- /training/amd-bootc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/amd-bootc/Makefile -------------------------------------------------------------------------------- /training/amd-bootc/rocm.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/amd-bootc/rocm.repo -------------------------------------------------------------------------------- /training/cloud/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/cloud/Makefile -------------------------------------------------------------------------------- /training/common/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/common/Makefile.common -------------------------------------------------------------------------------- /training/common/usr/lib/systemd/system/bootc-generic-growpart.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/common/usr/lib/systemd/system/bootc-generic-growpart.service -------------------------------------------------------------------------------- /training/common/usr/lib/systemd/system/local-fs.target.wants/bootc-generic-growpart.service: -------------------------------------------------------------------------------- 1 | ../bootc-generic-growpart.service -------------------------------------------------------------------------------- /training/common/usr/libexec/bootc-generic-growpart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/common/usr/libexec/bootc-generic-growpart -------------------------------------------------------------------------------- /training/deepspeed/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/deepspeed/Containerfile -------------------------------------------------------------------------------- /training/deepspeed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/deepspeed/Makefile -------------------------------------------------------------------------------- /training/ilab-wrapper/ilab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/ilab-wrapper/ilab -------------------------------------------------------------------------------- /training/ilab-wrapper/ilab-qlora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/ilab-wrapper/ilab-qlora -------------------------------------------------------------------------------- /training/ilab-wrapper/ilab-training-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/ilab-wrapper/ilab-training-launcher -------------------------------------------------------------------------------- /training/instructlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/instructlab/Makefile -------------------------------------------------------------------------------- /training/intel-bootc/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/intel-bootc/Containerfile -------------------------------------------------------------------------------- /training/intel-bootc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/intel-bootc/Makefile -------------------------------------------------------------------------------- /training/model/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/model/Containerfile -------------------------------------------------------------------------------- /training/model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/model/Makefile -------------------------------------------------------------------------------- /training/nvidia-bootc/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/nvidia-bootc/Containerfile -------------------------------------------------------------------------------- /training/nvidia-bootc/Containerfile.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/nvidia-bootc/Containerfile.builder -------------------------------------------------------------------------------- /training/nvidia-bootc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/nvidia-bootc/Makefile -------------------------------------------------------------------------------- /training/nvidia-bootc/nvidia-toolkit-firstboot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/nvidia-bootc/nvidia-toolkit-firstboot.service -------------------------------------------------------------------------------- /training/nvidia-bootc/x509-configuration.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/nvidia-bootc/x509-configuration.ini -------------------------------------------------------------------------------- /training/tests/e2e-tests/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/tests/e2e-tests/ansible.cfg -------------------------------------------------------------------------------- /training/tests/e2e-tests/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/tests/e2e-tests/playbook.yml -------------------------------------------------------------------------------- /training/tests/provision/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/tests/provision/ansible.cfg -------------------------------------------------------------------------------- /training/tests/provision/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/tests/provision/playbook.yml -------------------------------------------------------------------------------- /training/tests/provision/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/tests/provision/requirements.yml -------------------------------------------------------------------------------- /training/tests/provision/templates/Containerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/tests/provision/templates/Containerfile.j2 -------------------------------------------------------------------------------- /training/vllm/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/vllm/Containerfile -------------------------------------------------------------------------------- /training/vllm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/vllm/Makefile -------------------------------------------------------------------------------- /training/vllm/mixtral.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/rhelai-dev-preview/HEAD/training/vllm/mixtral.jinja --------------------------------------------------------------------------------