commit | fe53bc67a7f40ead0c29bbceeef567ee1ac42f26 | [log] [tgz] |
---|---|---|
author | Jonathan DEKHTIAR <jonathan@dekhtiar.com> | Tue Apr 18 16:02:59 2023 -0400 |
committer | GitHub <noreply@github.com> | Tue Apr 18 13:02:59 2023 -0700 |
tree | a3d169ef730571652a2f0ddafeb41ecee401e061 | |
parent | 27179e2a79600b97aba5ba9ab6bcea3a9103ad73 [diff] |
[NVIDIA Container] Fix `PATH` to include NVIDIA binaries (#13126) This branch addresses and fix a `PATH` issue in the NVIDIA containers. ```sh docker run -it \ --gpus=all \ gcr.io/iree-oss/nvidia-bleeding-edge bash # %%%% Container is starting %%%% # As you can see `nvcc` is not in the PATH root@12c0c715d753:/ nvcc --version bash: nvcc: command not found # Now let's fix the issue "by hand" and try again root@12c0c715d753:/ PATH=${PATH}:/usr/local/cuda/bin/ root@12c0c715d753:/ nvcc --version nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2022 NVIDIA Corporation Built on Wed_Sep_21_10:33:58_PDT_2022 Cuda compilation tools, release 11.8, V11.8.89 Build cuda_11.8.r11.8/compiler.31833905_0 ``` This simple PR fixes the problem. @ScottTodd & @GMNGeoffrey for review --------- Co-authored-by: Geoffrey Martin-Noble <gcmn@google.com>
IREE (Intermediate Representation Execution Environment, pronounced as “eerie”) is an MLIR-based end-to-end compiler and runtime that lowers Machine Learning (ML) models to a unified IR that scales up to meet the needs of the datacenter and down to satisfy the constraints and special considerations of mobile and edge deployments.
See our website for project details, user guides, and instructions on building from source.
IREE is still in its early phase. We have settled down on the overarching infrastructure and are actively improving various software components as well as project logistics. It is still quite far from ready for everyday use and is made available without any support at the moment. With that said, we welcome any kind of feedback on any communication channels!
See our website for more information.
IREE is licensed under the terms of the Apache 2.0 License with LLVM Exceptions. See LICENSE for more information.