Theo Viel
commited on
Commit
·
694c514
1
Parent(s):
88862ed
upload docker & doc files
Browse files- Dockerfile +21 -0
- THIRD_PARTY_NOTICES.md +15 -0
- docker-compose.yaml +21 -0
- pixi.lock +2384 -0
- quickstart.md +73 -0
Dockerfile
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM nvcr.io/nvidia/pytorch:25.09-py3
|
| 2 |
+
|
| 3 |
+
ARG TARGETARCH
|
| 4 |
+
|
| 5 |
+
ARG TORCH_CUDA_ARCH_LIST
|
| 6 |
+
ENV TORCH_CUDA_ARCH_LIST=${TORCH_CUDA_ARCH_LIST}
|
| 7 |
+
|
| 8 |
+
RUN --mount=type=cache,target=/root/.cache/pip \
|
| 9 |
+
pip install -U pip hatchling "setuptools>=68" --root-user-action ignore
|
| 10 |
+
|
| 11 |
+
COPY nemo-retriever-ocr /workspace/nemo-retriever-ocr
|
| 12 |
+
WORKDIR /workspace/nemo-retriever-ocr
|
| 13 |
+
|
| 14 |
+
# Ensure no prebuilt binaries/artifacts from the host are present
|
| 15 |
+
RUN rm -f src/nemo_retriever_ocr_cpp/*.so || true \
|
| 16 |
+
&& rm -rf build/ dist/
|
| 17 |
+
|
| 18 |
+
RUN --mount=type=cache,target=/root/.cache/pip \
|
| 19 |
+
BUILD_CPP_FORCE=1 ARCH=${TARGETARCH} pip install -v . --no-build-isolation --root-user-action ignore
|
| 20 |
+
|
| 21 |
+
WORKDIR /workspace
|
THIRD_PARTY_NOTICES.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Third Party Notices
|
| 2 |
+
|
| 3 |
+
The scripts contained in this repository make use of the following third-party libraries:
|
| 4 |
+
|
| 5 |
+
- [clipper](https://sourceforge.net/p/polyclipping/code/HEAD/tree/tags/6.2.0/License.txt)
|
| 6 |
+
- [hatchling](https://github.com/pypa/hatch/blob/master/LICENSE.txt)
|
| 7 |
+
- [numpy](https://github.com/numpy/numpy/blob/main/LICENSE.txt)
|
| 8 |
+
- [pandas](https://github.com/pandas-dev/pandas/blob/main/LICENSE)
|
| 9 |
+
- [Pillow](https://github.com/python-pillow/pillow/blob/main/LICENSE)
|
| 10 |
+
- [scikit_learn](https://github.com/scikit-learn/scikit-learn/blob/main/COPYING)
|
| 11 |
+
- [setuptools](https://github.com/pypa/setuptools/blob/main/LICENSE)
|
| 12 |
+
- [Shapely](https://github.com/shapely/shapely/blob/main/LICENSE.txt)
|
| 13 |
+
- [torch](https://github.com/pytorch/pytorch/blob/main/LICENSE)
|
| 14 |
+
- [torchvision](https://github.com/pytorch/vision/blob/main/LICENSE)
|
| 15 |
+
- [trove](https://github.com/bryancatanzaro/trove/blob/master/LICENSE)
|
docker-compose.yaml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
nemo-retriever-ocr:
|
| 3 |
+
build:
|
| 4 |
+
context: .
|
| 5 |
+
dockerfile: Dockerfile
|
| 6 |
+
deploy:
|
| 7 |
+
resources:
|
| 8 |
+
reservations:
|
| 9 |
+
devices:
|
| 10 |
+
- capabilities: [gpu]
|
| 11 |
+
working_dir: /workspace
|
| 12 |
+
volumes:
|
| 13 |
+
- .:/workspace:rw
|
| 14 |
+
- ${XDG_CACHE_HOME:-~/cache}:/root/.cache:rw
|
| 15 |
+
command: bash -lc "python example.py ocr-example-input-1.png --merge-level paragraph"
|
| 16 |
+
ipc: host
|
| 17 |
+
ulimits:
|
| 18 |
+
memlock:
|
| 19 |
+
soft: -1
|
| 20 |
+
hard: -1
|
| 21 |
+
stack: 6710886
|
pixi.lock
ADDED
|
@@ -0,0 +1,2384 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version: 6
|
| 2 |
+
environments:
|
| 3 |
+
default:
|
| 4 |
+
channels:
|
| 5 |
+
- url: https://conda.anaconda.org/conda-forge/
|
| 6 |
+
- url: https://conda.anaconda.org/nvidia/
|
| 7 |
+
packages:
|
| 8 |
+
linux-64:
|
| 9 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
| 10 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
| 11 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
|
| 12 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda
|
| 13 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.44-h4852527_2.conda
|
| 14 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.44-hdf8817f_2.conda
|
| 15 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.44-h4852527_2.conda
|
| 16 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
|
| 17 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.11.0-h4d9bdce_0.conda
|
| 18 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
|
| 19 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/conda-gcc-specs-14.3.0-hb991d5c_7.conda
|
| 20 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cccl_linux-64-12.8.90-ha770c72_1.conda
|
| 21 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-command-line-tools-12.8.1-ha770c72_0.conda
|
| 22 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-compiler-12.8.1-hbad6d8a_0.conda
|
| 23 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-crt-dev_linux-64-12.8.93-ha770c72_3.conda
|
| 24 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-crt-tools-12.8.93-ha770c72_3.conda
|
| 25 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-12.8.90-h5888daf_1.conda
|
| 26 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-dev-12.8.90-h5888daf_1.conda
|
| 27 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart-dev_linux-64-12.8.90-h3f2d84a_1.conda
|
| 28 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-static-12.8.90-h5888daf_1.conda
|
| 29 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart-static_linux-64-12.8.90-h3f2d84a_1.conda
|
| 30 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart_linux-64-12.8.90-h3f2d84a_1.conda
|
| 31 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cuobjdump-12.8.90-hbd13f7d_1.conda
|
| 32 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cupti-12.8.90-h5888daf_1.conda
|
| 33 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cupti-dev-12.8.90-h5888daf_1.conda
|
| 34 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cuxxfilt-12.8.90-hbd13f7d_1.conda
|
| 35 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-driver-dev-12.8.90-h5888daf_1.conda
|
| 36 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-driver-dev_linux-64-12.8.90-h3f2d84a_1.conda
|
| 37 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-gdb-12.8.90-ha677faa_1.conda
|
| 38 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-libraries-12.8.1-ha770c72_0.conda
|
| 39 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-libraries-dev-12.8.1-ha770c72_0.conda
|
| 40 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nsight-12.8.90-h7938cbb_1.conda
|
| 41 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc-12.8.93-hcdd1206_2.conda
|
| 42 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-nvcc-dev_linux-64-12.8.93-he91c749_3.conda
|
| 43 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc-impl-12.8.93-h85509e4_3.conda
|
| 44 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc-tools-12.8.93-he02047a_3.conda
|
| 45 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc_linux-64-12.8.93-he0b4e1d_2.conda
|
| 46 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvdisasm-12.8.90-hbd13f7d_1.conda
|
| 47 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvml-dev-12.8.90-hbd13f7d_1.conda
|
| 48 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvprof-12.8.90-hcf8d014_1.conda
|
| 49 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvprune-12.8.90-hbd13f7d_1.conda
|
| 50 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvrtc-12.8.93-h5888daf_1.conda
|
| 51 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvrtc-dev-12.8.93-h5888daf_1.conda
|
| 52 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvtx-12.8.90-h5888daf_1.conda
|
| 53 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-nvvm-dev_linux-64-12.8.93-ha770c72_3.conda
|
| 54 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvvm-impl-12.8.93-he02047a_3.conda
|
| 55 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvvm-tools-12.8.93-he02047a_3.conda
|
| 56 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvvp-12.8.93-hbd13f7d_1.conda
|
| 57 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-opencl-12.8.90-h5888daf_1.conda
|
| 58 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-opencl-dev-12.8.90-h5888daf_1.conda
|
| 59 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-profiler-api-12.8.90-h7938cbb_1.conda
|
| 60 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-sanitizer-api-12.8.93-hbd13f7d_1.conda
|
| 61 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-toolkit-12.8.1-ha804496_0.conda
|
| 62 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-tools-12.8.1-ha770c72_0.conda
|
| 63 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-version-12.8-h5d125a7_3.conda
|
| 64 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-visual-tools-12.8.1-ha770c72_0.conda
|
| 65 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.11.0-hfcd1e18_0.conda
|
| 66 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda
|
| 67 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
|
| 68 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
|
| 69 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
|
| 70 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
|
| 71 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
|
| 72 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
|
| 73 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
|
| 74 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
|
| 75 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-14.3.0-h76bdaa0_7.conda
|
| 76 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-14.3.0-hd9e9e21_7.conda
|
| 77 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-14.3.0-h298d278_12.conda
|
| 78 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gds-tools-1.13.1.3-h5888daf_1.conda
|
| 79 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
|
| 80 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-14.3.0-he448592_7.conda
|
| 81 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-14.3.0-he663afc_7.conda
|
| 82 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-14.3.0-h95f728e_12.conda
|
| 83 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
|
| 84 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_8.conda
|
| 85 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
|
| 86 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
|
| 87 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-ha97dd6f_2.conda
|
| 88 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.76-h0b2e76d_0.conda
|
| 89 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcublas-12.8.4.1-h9ab20c4_1.conda
|
| 90 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcublas-dev-12.8.4.1-h9ab20c4_1.conda
|
| 91 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufft-11.3.3.83-h5888daf_1.conda
|
| 92 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufft-dev-11.3.3.83-h5888daf_1.conda
|
| 93 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufile-1.13.1.3-h628e99a_1.conda
|
| 94 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufile-dev-1.13.1.3-h5888daf_1.conda
|
| 95 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurand-10.3.9.90-h9ab20c4_1.conda
|
| 96 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurand-dev-10.3.9.90-h9ab20c4_1.conda
|
| 97 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusolver-11.7.3.90-h9ab20c4_1.conda
|
| 98 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusolver-dev-11.7.3.90-h9ab20c4_1.conda
|
| 99 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusparse-12.5.8.93-h5888daf_1.conda
|
| 100 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusparse-dev-12.5.8.93-h5888daf_1.conda
|
| 101 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
|
| 102 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
|
| 103 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
|
| 104 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
|
| 105 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
|
| 106 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda
|
| 107 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-14.3.0-h85bb3a7_107.conda
|
| 108 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda
|
| 109 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
|
| 110 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.86.0-h1fed272_0.conda
|
| 111 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
|
| 112 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda
|
| 113 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
|
| 114 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
|
| 115 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
| 116 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.11.0-hb9d3cd8_0.conda
|
| 117 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnpp-12.3.3.100-h9ab20c4_1.conda
|
| 118 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnpp-dev-12.3.3.100-h9ab20c4_1.conda
|
| 119 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
|
| 120 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.18-hb9d3cd8_3.conda
|
| 121 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvfatbin-12.8.90-h5888daf_1.conda
|
| 122 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvfatbin-dev-12.8.90-h5888daf_1.conda
|
| 123 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjitlink-12.8.93-h5888daf_1.conda
|
| 124 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjitlink-dev-12.8.93-h5888daf_1.conda
|
| 125 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjpeg-12.3.5.92-h5888daf_1.conda
|
| 126 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjpeg-dev-12.3.5.92-ha770c72_1.conda
|
| 127 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
|
| 128 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
|
| 129 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-14.3.0-hd08acf3_7.conda
|
| 130 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
|
| 131 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda
|
| 132 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-14.3.0-h85bb3a7_107.conda
|
| 133 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda
|
| 134 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.9-h996ca69_0.conda
|
| 135 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.9-h085a93f_0.conda
|
| 136 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda
|
| 137 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
|
| 138 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
| 139 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.12.0-hca5e8e5_0.conda
|
| 140 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbfile-1.1.0-h166bdaf_1.conda
|
| 141 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.0-ha9997c6_1.conda
|
| 142 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.0-h26afc86_1.conda
|
| 143 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
| 144 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
|
| 145 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
| 146 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.13.1-h171cf75_0.conda
|
| 147 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/nsight-compute-2025.1.1.2-hb5ebaad_1.conda
|
| 148 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.37-h29cc59b_0.conda
|
| 149 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/nss-3.117-h445c969_0.conda
|
| 150 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda
|
| 151 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda
|
| 152 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda
|
| 153 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.46-h1321c63_0.conda
|
| 154 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
|
| 155 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.12-hfe2f287_0_cpython.conda
|
| 156 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-59.0-hecca717_0.conda
|
| 157 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
|
| 158 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_8.conda
|
| 159 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
|
| 160 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
| 161 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/uv-0.9.4-h30787bc_0.conda
|
| 162 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.24.0-h3e06ad9_0.conda
|
| 163 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda
|
| 164 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
|
| 165 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
|
| 166 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
|
| 167 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
|
| 168 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
|
| 169 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.46-hb03c661_0.conda
|
| 170 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
|
| 171 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
|
| 172 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
|
| 173 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
|
| 174 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
|
| 175 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
|
| 176 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
|
| 177 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
|
| 178 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.2-hb03c661_0.conda
|
| 179 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
|
| 180 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
|
| 181 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
|
| 182 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
|
| 183 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
|
| 184 |
+
packages:
|
| 185 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
| 186 |
+
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
|
| 187 |
+
md5: d7c89558ba9fa0495403155b64376d81
|
| 188 |
+
license: None
|
| 189 |
+
purls: []
|
| 190 |
+
size: 2562
|
| 191 |
+
timestamp: 1578324546067
|
| 192 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
| 193 |
+
build_number: 16
|
| 194 |
+
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
|
| 195 |
+
md5: 73aaf86a425cc6e73fcf236a5a46396d
|
| 196 |
+
depends:
|
| 197 |
+
- _libgcc_mutex 0.1 conda_forge
|
| 198 |
+
- libgomp >=7.5.0
|
| 199 |
+
constrains:
|
| 200 |
+
- openmp_impl 9999
|
| 201 |
+
license: BSD-3-Clause
|
| 202 |
+
license_family: BSD
|
| 203 |
+
purls: []
|
| 204 |
+
size: 23621
|
| 205 |
+
timestamp: 1650670423406
|
| 206 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
|
| 207 |
+
sha256: b9214bc17e89bf2b691fad50d952b7f029f6148f4ac4fe7c60c08f093efdf745
|
| 208 |
+
md5: 76df83c2a9035c54df5d04ff81bcc02d
|
| 209 |
+
depends:
|
| 210 |
+
- __glibc >=2.17,<3.0.a0
|
| 211 |
+
- libgcc >=13
|
| 212 |
+
license: LGPL-2.1-or-later
|
| 213 |
+
license_family: GPL
|
| 214 |
+
purls: []
|
| 215 |
+
size: 566531
|
| 216 |
+
timestamp: 1744668655747
|
| 217 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda
|
| 218 |
+
sha256: a9c114cbfeda42a226e2db1809a538929d2f118ef855372293bd188f71711c48
|
| 219 |
+
md5: 791365c5f65975051e4e017b5da3abf5
|
| 220 |
+
depends:
|
| 221 |
+
- __glibc >=2.17,<3.0.a0
|
| 222 |
+
- libgcc >=13
|
| 223 |
+
license: GPL-2.0-or-later
|
| 224 |
+
license_family: GPL
|
| 225 |
+
purls: []
|
| 226 |
+
size: 68072
|
| 227 |
+
timestamp: 1756738968573
|
| 228 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.44-h4852527_2.conda
|
| 229 |
+
sha256: 1461b66ef4801c20dc39d7005eed559bfcd3a62c219dc030343ddd570b58a9e6
|
| 230 |
+
md5: 7f77703af8f54071370e0bc3a4b225af
|
| 231 |
+
depends:
|
| 232 |
+
- binutils_impl_linux-64 >=2.44,<2.45.0a0
|
| 233 |
+
license: GPL-3.0-only
|
| 234 |
+
license_family: GPL
|
| 235 |
+
purls: []
|
| 236 |
+
size: 34957
|
| 237 |
+
timestamp: 1758810956483
|
| 238 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.44-hdf8817f_2.conda
|
| 239 |
+
sha256: 014eda0be99345946706a8141ecf32f619c731152831b85e4a752b4917c4528c
|
| 240 |
+
md5: f0716b5f7e87e83678d50da21e7a54b4
|
| 241 |
+
depends:
|
| 242 |
+
- ld_impl_linux-64 2.44 ha97dd6f_2
|
| 243 |
+
- sysroot_linux-64
|
| 244 |
+
license: GPL-3.0-only
|
| 245 |
+
license_family: GPL
|
| 246 |
+
purls: []
|
| 247 |
+
size: 3797704
|
| 248 |
+
timestamp: 1758810925961
|
| 249 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.44-h4852527_2.conda
|
| 250 |
+
sha256: fd73320b4b3df2b18a1c2a9e17ed8c1402e1530c03a7d5af8240469b389128dd
|
| 251 |
+
md5: 9102871743e92e2eea2f2b3bfef74ed0
|
| 252 |
+
depends:
|
| 253 |
+
- binutils_impl_linux-64 2.44 hdf8817f_2
|
| 254 |
+
license: GPL-3.0-only
|
| 255 |
+
license_family: GPL
|
| 256 |
+
purls: []
|
| 257 |
+
size: 35965
|
| 258 |
+
timestamp: 1758810959224
|
| 259 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_8.conda
|
| 260 |
+
sha256: c30daba32ddebbb7ded490f0e371eae90f51e72db620554089103b4a6934b0d5
|
| 261 |
+
md5: 51a19bba1b8ebfb60df25cde030b7ebc
|
| 262 |
+
depends:
|
| 263 |
+
- __glibc >=2.17,<3.0.a0
|
| 264 |
+
- libgcc >=14
|
| 265 |
+
license: bzip2-1.0.6
|
| 266 |
+
license_family: BSD
|
| 267 |
+
purls: []
|
| 268 |
+
size: 260341
|
| 269 |
+
timestamp: 1757437258798
|
| 270 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.11.0-h4d9bdce_0.conda
|
| 271 |
+
sha256: 8e7a40f16400d7839c82581410aa05c1f8324a693c9d50079f8c50dc9fb241f0
|
| 272 |
+
md5: abd85120de1187b0d1ec305c2173c71b
|
| 273 |
+
depends:
|
| 274 |
+
- binutils
|
| 275 |
+
- gcc
|
| 276 |
+
- gcc_linux-64 14.*
|
| 277 |
+
license: BSD-3-Clause
|
| 278 |
+
license_family: BSD
|
| 279 |
+
purls: []
|
| 280 |
+
size: 6693
|
| 281 |
+
timestamp: 1753098721814
|
| 282 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda
|
| 283 |
+
sha256: 3b5ad78b8bb61b6cdc0978a6a99f8dfb2cc789a451378d054698441005ecbdb6
|
| 284 |
+
md5: f9e5fbc24009179e8b0409624691758a
|
| 285 |
+
depends:
|
| 286 |
+
- __unix
|
| 287 |
+
license: ISC
|
| 288 |
+
purls: []
|
| 289 |
+
size: 155907
|
| 290 |
+
timestamp: 1759649036195
|
| 291 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/conda-gcc-specs-14.3.0-hb991d5c_7.conda
|
| 292 |
+
sha256: d2fc6de5c21d92bf6a4c2f51040662ea34ed94baa7c2758ba685fd3b0032f7cb
|
| 293 |
+
md5: 39586596e88259bae48f904fb1025b77
|
| 294 |
+
depends:
|
| 295 |
+
- gcc_impl_linux-64 >=14.3.0,<14.3.1.0a0
|
| 296 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 297 |
+
license_family: GPL
|
| 298 |
+
purls: []
|
| 299 |
+
size: 33231
|
| 300 |
+
timestamp: 1759965946160
|
| 301 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cccl_linux-64-12.8.90-ha770c72_1.conda
|
| 302 |
+
sha256: 43b572b5d0c912b5be6c581846443ce24dfb7b6f6013365808cd88d11b8d4391
|
| 303 |
+
md5: cebd15fd844ae8d2b961905c70ab5b62
|
| 304 |
+
depends:
|
| 305 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 306 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 307 |
+
purls: []
|
| 308 |
+
size: 1064204
|
| 309 |
+
timestamp: 1741373535593
|
| 310 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-command-line-tools-12.8.1-ha770c72_0.conda
|
| 311 |
+
sha256: c6dce40d0f62f87eb494c071108bc6cf3ad09ca00529bd2b0732b481bb4e8a7b
|
| 312 |
+
md5: 32ad5278582c69ed9128777674de2fc0
|
| 313 |
+
depends:
|
| 314 |
+
- cuda-cupti-dev 12.8.90.*
|
| 315 |
+
- cuda-gdb 12.8.90.*
|
| 316 |
+
- cuda-nvdisasm 12.8.90.*
|
| 317 |
+
- cuda-nvprof 12.8.90.*
|
| 318 |
+
- cuda-nvtx 12.8.90.*
|
| 319 |
+
- cuda-sanitizer-api 12.8.93.*
|
| 320 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 321 |
+
purls: []
|
| 322 |
+
size: 20137
|
| 323 |
+
timestamp: 1741381157290
|
| 324 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-compiler-12.8.1-hbad6d8a_0.conda
|
| 325 |
+
sha256: cca8108d44ed386e1a80ae18f75e33cec8140c312cf513d39e1ba7a22bb672b1
|
| 326 |
+
md5: edfd7a9617fefa41bcc0b800952777ec
|
| 327 |
+
depends:
|
| 328 |
+
- __linux
|
| 329 |
+
- c-compiler
|
| 330 |
+
- cuda-cuobjdump 12.8.90.*
|
| 331 |
+
- cuda-cuxxfilt 12.8.90.*
|
| 332 |
+
- cuda-nvcc 12.8.93.*
|
| 333 |
+
- cuda-nvprune 12.8.90.*
|
| 334 |
+
- cxx-compiler
|
| 335 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 336 |
+
purls: []
|
| 337 |
+
size: 20288
|
| 338 |
+
timestamp: 1741381235177
|
| 339 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-crt-dev_linux-64-12.8.93-ha770c72_3.conda
|
| 340 |
+
sha256: cc09a43373a0e0677051fc6821d797b89ed9d96119d95e342e94f704fc9a5338
|
| 341 |
+
md5: 21a6a73bb90807d78cd0c5f07e3715b9
|
| 342 |
+
depends:
|
| 343 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 344 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 345 |
+
purls: []
|
| 346 |
+
size: 93330
|
| 347 |
+
timestamp: 1744159239919
|
| 348 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-crt-tools-12.8.93-ha770c72_3.conda
|
| 349 |
+
sha256: 8d17500d74992372e3d4929c056ca16a89026ec6b9c9147fcc3c67c54d3a8cac
|
| 350 |
+
md5: 3f8d05bb84dbe78ce1b94f85ce74e691
|
| 351 |
+
depends:
|
| 352 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 353 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 354 |
+
purls: []
|
| 355 |
+
size: 28081
|
| 356 |
+
timestamp: 1744159249576
|
| 357 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-12.8.90-h5888daf_1.conda
|
| 358 |
+
sha256: 294b789d6bce9944fc5987c86dc1cdcdbc4eb965f559b81749dbf03b43e6c135
|
| 359 |
+
md5: 46e0a8ffe985a3aa2652446fc40c7fe9
|
| 360 |
+
depends:
|
| 361 |
+
- __glibc >=2.17,<3.0.a0
|
| 362 |
+
- cuda-cudart_linux-64 12.8.90 h3f2d84a_1
|
| 363 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 364 |
+
- libgcc >=13
|
| 365 |
+
- libstdcxx >=13
|
| 366 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 367 |
+
purls: []
|
| 368 |
+
size: 22751
|
| 369 |
+
timestamp: 1741374679128
|
| 370 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-dev-12.8.90-h5888daf_1.conda
|
| 371 |
+
sha256: a25c9ff8aac4aebac31885ff9e00fd196a0695f13f435de1d8dbc2ec8d438043
|
| 372 |
+
md5: f2d36f5c109827225b7dba169f7fae76
|
| 373 |
+
depends:
|
| 374 |
+
- __glibc >=2.17,<3.0.a0
|
| 375 |
+
- cuda-cudart 12.8.90 h5888daf_1
|
| 376 |
+
- cuda-cudart-dev_linux-64 12.8.90 h3f2d84a_1
|
| 377 |
+
- cuda-cudart-static 12.8.90 h5888daf_1
|
| 378 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 379 |
+
- libgcc >=13
|
| 380 |
+
- libstdcxx >=13
|
| 381 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 382 |
+
purls: []
|
| 383 |
+
size: 23184
|
| 384 |
+
timestamp: 1741374710131
|
| 385 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart-dev_linux-64-12.8.90-h3f2d84a_1.conda
|
| 386 |
+
sha256: 04284c4e1f1bbc0625c24a806a4c2680de7b8b079d81cd7fe4f7bc1e1e1ddf66
|
| 387 |
+
md5: 097bef67ba07eba0180cc6f979b3fd41
|
| 388 |
+
depends:
|
| 389 |
+
- cuda-cccl_linux-64
|
| 390 |
+
- cuda-cudart-static_linux-64
|
| 391 |
+
- cuda-cudart_linux-64
|
| 392 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 393 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 394 |
+
purls: []
|
| 395 |
+
size: 385560
|
| 396 |
+
timestamp: 1741374687362
|
| 397 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-static-12.8.90-h5888daf_1.conda
|
| 398 |
+
sha256: ed45add3d27d5dd2c5706a7d78eff00ee862327f6c026373861d8089286d3375
|
| 399 |
+
md5: adee0dd8c67b8977df0e0c9cceb12f9c
|
| 400 |
+
depends:
|
| 401 |
+
- __glibc >=2.17,<3.0.a0
|
| 402 |
+
- cuda-cudart-static_linux-64 12.8.90 h3f2d84a_1
|
| 403 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 404 |
+
- libgcc >=13
|
| 405 |
+
- libstdcxx >=13
|
| 406 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 407 |
+
purls: []
|
| 408 |
+
size: 22779
|
| 409 |
+
timestamp: 1741374696039
|
| 410 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart-static_linux-64-12.8.90-h3f2d84a_1.conda
|
| 411 |
+
sha256: 517dfb4b562c9dbdd3f05c35af7f0d0eaa40d204d4a1a373c674e93ed130227d
|
| 412 |
+
md5: 7209c9a9ee3e0e7c50fb76fa166f4292
|
| 413 |
+
depends:
|
| 414 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 415 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 416 |
+
purls: []
|
| 417 |
+
size: 987272
|
| 418 |
+
timestamp: 1741374656668
|
| 419 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart_linux-64-12.8.90-h3f2d84a_1.conda
|
| 420 |
+
sha256: b8b307d03eb16aa111d244004ac48d1e0d0592ade846566bb392f75c54b6828f
|
| 421 |
+
md5: 7bfc39f6fd3cfba6ef5fe8db0bc0e94f
|
| 422 |
+
depends:
|
| 423 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 424 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 425 |
+
purls: []
|
| 426 |
+
size: 192766
|
| 427 |
+
timestamp: 1741374664938
|
| 428 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cuobjdump-12.8.90-hbd13f7d_1.conda
|
| 429 |
+
sha256: 262fbee5daf766777cdc924e40d982ceff9358d8316faa683d6496e402f79b0a
|
| 430 |
+
md5: 58f3a7019158135be2aa99f77a07b7b0
|
| 431 |
+
depends:
|
| 432 |
+
- __glibc >=2.17,<3.0.a0
|
| 433 |
+
- cuda-nvdisasm
|
| 434 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 435 |
+
- libgcc >=13
|
| 436 |
+
- libstdcxx >=13
|
| 437 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 438 |
+
purls: []
|
| 439 |
+
size: 232426
|
| 440 |
+
timestamp: 1742416137141
|
| 441 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cupti-12.8.90-h5888daf_1.conda
|
| 442 |
+
sha256: d0560bcb505ccf6a3d71e153d45dd6afec5ee7009d9482c723210ac2ce79db1b
|
| 443 |
+
md5: d08def22d8f7c7a2875ed8c53aebd185
|
| 444 |
+
depends:
|
| 445 |
+
- __glibc >=2.17,<3.0.a0
|
| 446 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 447 |
+
- libgcc >=13
|
| 448 |
+
- libstdcxx >=13
|
| 449 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 450 |
+
purls: []
|
| 451 |
+
size: 1848503
|
| 452 |
+
timestamp: 1743629512155
|
| 453 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cupti-dev-12.8.90-h5888daf_1.conda
|
| 454 |
+
sha256: dc51f10894ad875eb3890b9c4745317f2dcc05b226304362a88b893533084127
|
| 455 |
+
md5: 5e38204ab4d20e1cc07ebe6d933b3e29
|
| 456 |
+
depends:
|
| 457 |
+
- __glibc >=2.17,<3.0.a0
|
| 458 |
+
- cuda-cupti 12.8.90 h5888daf_1
|
| 459 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 460 |
+
- libgcc >=13
|
| 461 |
+
- libstdcxx >=13
|
| 462 |
+
constrains:
|
| 463 |
+
- cuda-cupti-static >=12.8.90
|
| 464 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 465 |
+
purls: []
|
| 466 |
+
size: 4219417
|
| 467 |
+
timestamp: 1743629573682
|
| 468 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-cuxxfilt-12.8.90-hbd13f7d_1.conda
|
| 469 |
+
sha256: 8a95c641571e50a463bf0520b23dd38db3dd584e8853f78495339fb9e9decafb
|
| 470 |
+
md5: 6c9602ddd549569125ee224db17477d8
|
| 471 |
+
depends:
|
| 472 |
+
- __glibc >=2.17,<3.0.a0
|
| 473 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 474 |
+
- libgcc >=13
|
| 475 |
+
- libstdcxx >=13
|
| 476 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 477 |
+
purls: []
|
| 478 |
+
size: 216285
|
| 479 |
+
timestamp: 1742416201527
|
| 480 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-driver-dev-12.8.90-h5888daf_1.conda
|
| 481 |
+
sha256: d0e1932d2a0b2308f1d522103031d5a2bd2f44ff6e164011a337a7ce20e5b758
|
| 482 |
+
md5: 14ff03a093a9326b24a80649502672df
|
| 483 |
+
depends:
|
| 484 |
+
- __glibc >=2.17,<3.0.a0
|
| 485 |
+
- cuda-driver-dev_linux-64
|
| 486 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 487 |
+
- libgcc >=13
|
| 488 |
+
- libstdcxx >=13
|
| 489 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 490 |
+
purls: []
|
| 491 |
+
size: 22553
|
| 492 |
+
timestamp: 1741374703046
|
| 493 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-driver-dev_linux-64-12.8.90-h3f2d84a_1.conda
|
| 494 |
+
sha256: d5f86e98c79149e6ef8a5a0062a6757a1d17966af26c653ff11e8295ba27f76b
|
| 495 |
+
md5: 7ddc5be86428f211f06ccce23c712503
|
| 496 |
+
depends:
|
| 497 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 498 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 499 |
+
purls: []
|
| 500 |
+
size: 36985
|
| 501 |
+
timestamp: 1741374672216
|
| 502 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-gdb-12.8.90-ha677faa_1.conda
|
| 503 |
+
sha256: a85584c0eb30f058c1d5e21a660ba5cc8cc9a1c5f0ba55ea6434c1ea28c791ea
|
| 504 |
+
md5: e751c95c28d3bb8107c54c5104116e3b
|
| 505 |
+
depends:
|
| 506 |
+
- __glibc >=2.28,<3.0.a0
|
| 507 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 508 |
+
- gmp >=6.3.0,<7.0a0
|
| 509 |
+
- libgcc >=13
|
| 510 |
+
- libstdcxx >=13
|
| 511 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 512 |
+
purls: []
|
| 513 |
+
size: 360547
|
| 514 |
+
timestamp: 1743626104302
|
| 515 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-libraries-12.8.1-ha770c72_0.conda
|
| 516 |
+
sha256: 9ae25c0c26959d50932b4ba583217ead084cd53e6356c7855f9f2553d9578a3c
|
| 517 |
+
md5: 51f5f8be4e3cc86b723b3bd6e2b6f095
|
| 518 |
+
depends:
|
| 519 |
+
- cuda-cudart 12.8.90.*
|
| 520 |
+
- cuda-nvrtc 12.8.93.*
|
| 521 |
+
- cuda-opencl 12.8.90.*
|
| 522 |
+
- libcublas 12.8.4.1.*
|
| 523 |
+
- libcufft 11.3.3.83.*
|
| 524 |
+
- libcufile 1.13.1.3.*
|
| 525 |
+
- libcurand 10.3.9.90.*
|
| 526 |
+
- libcusolver 11.7.3.90.*
|
| 527 |
+
- libcusparse 12.5.8.93.*
|
| 528 |
+
- libnpp 12.3.3.100.*
|
| 529 |
+
- libnvfatbin 12.8.90.*
|
| 530 |
+
- libnvjitlink 12.8.93.*
|
| 531 |
+
- libnvjpeg 12.3.5.92.*
|
| 532 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 533 |
+
purls: []
|
| 534 |
+
size: 20178
|
| 535 |
+
timestamp: 1741386840152
|
| 536 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-libraries-dev-12.8.1-ha770c72_0.conda
|
| 537 |
+
sha256: 5e1e51c414efeeb14d7598cf2273046f5f8ef8f143d3f87f85e45318f7e0ad28
|
| 538 |
+
md5: b348ef660f51abc012305f3046fa4fbf
|
| 539 |
+
depends:
|
| 540 |
+
- cuda-cccl_linux-64 12.8.90.*
|
| 541 |
+
- cuda-cudart-dev 12.8.90.*
|
| 542 |
+
- cuda-driver-dev 12.8.90.*
|
| 543 |
+
- cuda-nvrtc-dev 12.8.93.*
|
| 544 |
+
- cuda-opencl-dev 12.8.90.*
|
| 545 |
+
- cuda-profiler-api 12.8.90.*
|
| 546 |
+
- libcublas-dev 12.8.4.1.*
|
| 547 |
+
- libcufft-dev 11.3.3.83.*
|
| 548 |
+
- libcufile-dev 1.13.1.3.*
|
| 549 |
+
- libcurand-dev 10.3.9.90.*
|
| 550 |
+
- libcusolver-dev 11.7.3.90.*
|
| 551 |
+
- libcusparse-dev 12.5.8.93.*
|
| 552 |
+
- libnpp-dev 12.3.3.100.*
|
| 553 |
+
- libnvfatbin-dev 12.8.90.*
|
| 554 |
+
- libnvjitlink-dev 12.8.93.*
|
| 555 |
+
- libnvjpeg-dev 12.3.5.92.*
|
| 556 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 557 |
+
purls: []
|
| 558 |
+
size: 20231
|
| 559 |
+
timestamp: 1741386851906
|
| 560 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nsight-12.8.90-h7938cbb_1.conda
|
| 561 |
+
sha256: 99667ceb4005e965322f1697da42ad7f7db86a2df4899c233cce5f986743b91f
|
| 562 |
+
md5: e707a7d0ea2b81e1a47039fa449f2f41
|
| 563 |
+
depends:
|
| 564 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 565 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 566 |
+
purls: []
|
| 567 |
+
size: 118690051
|
| 568 |
+
timestamp: 1742488231869
|
| 569 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc-12.8.93-hcdd1206_2.conda
|
| 570 |
+
sha256: fa311071c58649de53bdae218453f32983ba684a659ba284d100133cb86fee62
|
| 571 |
+
md5: 04103ae1cfff32c1a76cd31164b8e128
|
| 572 |
+
depends:
|
| 573 |
+
- cuda-nvcc_linux-64 12.8.93.*
|
| 574 |
+
- gcc_linux-64
|
| 575 |
+
- gxx_linux-64
|
| 576 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 577 |
+
purls: []
|
| 578 |
+
size: 24875
|
| 579 |
+
timestamp: 1746136037405
|
| 580 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-nvcc-dev_linux-64-12.8.93-he91c749_3.conda
|
| 581 |
+
sha256: 47bf6a1b54a06f1888ad81a0f0527ca778fa5c945e50ec687d7a452d5f56e2a3
|
| 582 |
+
md5: 6a0303279ec665b316449afb3e1e2096
|
| 583 |
+
depends:
|
| 584 |
+
- cuda-crt-dev_linux-64 12.8.93 ha770c72_3
|
| 585 |
+
- cuda-nvvm-dev_linux-64 12.8.93 ha770c72_3
|
| 586 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 587 |
+
- libgcc >=6
|
| 588 |
+
constrains:
|
| 589 |
+
- gcc_impl_linux-64 >=6,<15.0a0
|
| 590 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 591 |
+
purls: []
|
| 592 |
+
size: 13298256
|
| 593 |
+
timestamp: 1744159454859
|
| 594 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc-impl-12.8.93-h85509e4_3.conda
|
| 595 |
+
sha256: 7013b68277642b5a38f4a46c5c47d160d91461e13cc766219010d3be5b4f516e
|
| 596 |
+
md5: 1ee91cd614461de074fbdf1696486470
|
| 597 |
+
depends:
|
| 598 |
+
- cuda-cudart >=12.8.90,<13.0a0
|
| 599 |
+
- cuda-cudart-dev
|
| 600 |
+
- cuda-nvcc-dev_linux-64 12.8.93 he91c749_3
|
| 601 |
+
- cuda-nvcc-tools 12.8.93 he02047a_3
|
| 602 |
+
- cuda-nvvm-impl 12.8.93 he02047a_3
|
| 603 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 604 |
+
constrains:
|
| 605 |
+
- gcc_impl_linux-64 >=6,<15.0a0
|
| 606 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 607 |
+
purls: []
|
| 608 |
+
size: 26416
|
| 609 |
+
timestamp: 1744159505703
|
| 610 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc-tools-12.8.93-he02047a_3.conda
|
| 611 |
+
sha256: 0de99bd6972c805b5aeebcc7d1a9ffa1855accbe823daf3f6e12b27b14e6efca
|
| 612 |
+
md5: 6edaf1ed7e0447ba8dbee643fe991832
|
| 613 |
+
depends:
|
| 614 |
+
- __glibc >=2.17,<3.0.a0
|
| 615 |
+
- cuda-crt-tools 12.8.93 ha770c72_3
|
| 616 |
+
- cuda-nvvm-tools 12.8.93 he02047a_3
|
| 617 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 618 |
+
- libgcc >=12
|
| 619 |
+
- libstdcxx >=12
|
| 620 |
+
constrains:
|
| 621 |
+
- gcc_impl_linux-64 >=6,<15.0a0
|
| 622 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 623 |
+
purls: []
|
| 624 |
+
size: 25644307
|
| 625 |
+
timestamp: 1744159388339
|
| 626 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvcc_linux-64-12.8.93-he0b4e1d_2.conda
|
| 627 |
+
sha256: b6493943eed33fed6d80e06b605056952900fefd7e17fa1309f4286b623fc193
|
| 628 |
+
md5: 1f334882100acde78478119815d08acb
|
| 629 |
+
depends:
|
| 630 |
+
- __glibc >=2.17,<3.0.a0
|
| 631 |
+
- cuda-cudart-dev_linux-64 12.8.*
|
| 632 |
+
- cuda-driver-dev_linux-64 12.8.*
|
| 633 |
+
- cuda-nvcc-dev_linux-64 12.8.93.*
|
| 634 |
+
- cuda-nvcc-impl 12.8.93.*
|
| 635 |
+
- cuda-nvcc-tools 12.8.93.*
|
| 636 |
+
- sysroot_linux-64 >=2.17,<3.0a0
|
| 637 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 638 |
+
purls: []
|
| 639 |
+
size: 26846
|
| 640 |
+
timestamp: 1746136036842
|
| 641 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvdisasm-12.8.90-hbd13f7d_1.conda
|
| 642 |
+
sha256: b8db8c6a1dd658ad66739f473df8c16a35143d8058f1bc7e66d221691dcbb737
|
| 643 |
+
md5: c6d84f4b5d81dad39054eb37ecd2d136
|
| 644 |
+
depends:
|
| 645 |
+
- __glibc >=2.17,<3.0.a0
|
| 646 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 647 |
+
- libgcc >=13
|
| 648 |
+
- libstdcxx >=13
|
| 649 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 650 |
+
purls: []
|
| 651 |
+
size: 5124390
|
| 652 |
+
timestamp: 1742414503225
|
| 653 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvml-dev-12.8.90-hbd13f7d_1.conda
|
| 654 |
+
sha256: d6ae399ed51822a44ab33d212f1dca8516e408f35206b26432c31768b73a7cb0
|
| 655 |
+
md5: 8a338d8adba64e125d276f834efee34e
|
| 656 |
+
depends:
|
| 657 |
+
- __glibc >=2.17,<3.0.a0
|
| 658 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 659 |
+
- libgcc >=13
|
| 660 |
+
- libstdcxx >=13
|
| 661 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 662 |
+
purls: []
|
| 663 |
+
size: 138296
|
| 664 |
+
timestamp: 1743814660851
|
| 665 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvprof-12.8.90-hcf8d014_1.conda
|
| 666 |
+
sha256: ad373801cf55df7cbb8c64e2b95a8040f5bd59e8a327f7119d988e903856fc06
|
| 667 |
+
md5: f8b6acac1a9f488bd33bedc17ae555c9
|
| 668 |
+
depends:
|
| 669 |
+
- __glibc >=2.28,<3.0.a0
|
| 670 |
+
- cuda-cupti
|
| 671 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 672 |
+
- libgcc >=13
|
| 673 |
+
- libstdcxx >=13
|
| 674 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 675 |
+
purls: []
|
| 676 |
+
size: 2629561
|
| 677 |
+
timestamp: 1743625848940
|
| 678 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvprune-12.8.90-hbd13f7d_1.conda
|
| 679 |
+
sha256: 0254130230a4806eb6f99c8bf09a4d1c195762036079e715534601aa71d7da09
|
| 680 |
+
md5: 2114f4e9eeebeff41dac2c11685bfef3
|
| 681 |
+
depends:
|
| 682 |
+
- __glibc >=2.17,<3.0.a0
|
| 683 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 684 |
+
- libgcc >=13
|
| 685 |
+
- libstdcxx >=13
|
| 686 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 687 |
+
purls: []
|
| 688 |
+
size: 69952
|
| 689 |
+
timestamp: 1742487641731
|
| 690 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvrtc-12.8.93-h5888daf_1.conda
|
| 691 |
+
sha256: 38edf4f501ccbb996cc9f0797fcf404c12d4aeef974308cf8b997b470409c171
|
| 692 |
+
md5: 7c5ae09d55b1b2b390772755fe5b4c13
|
| 693 |
+
depends:
|
| 694 |
+
- __glibc >=2.17,<3.0.a0
|
| 695 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 696 |
+
- libgcc >=13
|
| 697 |
+
- libstdcxx >=13
|
| 698 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 699 |
+
purls: []
|
| 700 |
+
size: 66214407
|
| 701 |
+
timestamp: 1742405328961
|
| 702 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvrtc-dev-12.8.93-h5888daf_1.conda
|
| 703 |
+
sha256: 422e52d830f9f6b5fbb6b7c7b7b190a133cc1fb5ca8531cca370a8001dbb7eca
|
| 704 |
+
md5: 65bdeed95789478064d3d933ac21a1f5
|
| 705 |
+
depends:
|
| 706 |
+
- __glibc >=2.17,<3.0.a0
|
| 707 |
+
- cuda-nvrtc 12.8.93 h5888daf_1
|
| 708 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 709 |
+
- libgcc >=13
|
| 710 |
+
- libstdcxx >=13
|
| 711 |
+
constrains:
|
| 712 |
+
- cuda-nvrtc-static >=12.8.93
|
| 713 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 714 |
+
purls: []
|
| 715 |
+
size: 35219
|
| 716 |
+
timestamp: 1742405606719
|
| 717 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvtx-12.8.90-h5888daf_1.conda
|
| 718 |
+
sha256: 0ce1ff2d4ab5ba7c91373125815f8127f5c338d25ace4bef5fb30fb17402a7b2
|
| 719 |
+
md5: 8f32e53c88c897392a1ba79a4f268276
|
| 720 |
+
depends:
|
| 721 |
+
- __glibc >=2.17,<3.0.a0
|
| 722 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 723 |
+
- libgcc >=13
|
| 724 |
+
- libstdcxx >=13
|
| 725 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 726 |
+
purls: []
|
| 727 |
+
size: 32175
|
| 728 |
+
timestamp: 1743625825363
|
| 729 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-nvvm-dev_linux-64-12.8.93-ha770c72_3.conda
|
| 730 |
+
sha256: 24c6d5931c98f1b2b780a982bc366553bc2077b95f8e96ad5b7cc89dfe905e8f
|
| 731 |
+
md5: c37acb85903a13a9cec10a4e7142b893
|
| 732 |
+
depends:
|
| 733 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 734 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 735 |
+
purls: []
|
| 736 |
+
size: 26128
|
| 737 |
+
timestamp: 1744159257892
|
| 738 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvvm-impl-12.8.93-he02047a_3.conda
|
| 739 |
+
sha256: 84f57701cb23d07b4da310cf37d389ce255748e3d3246ef0eac3014e05195a3e
|
| 740 |
+
md5: 53f3160d917aa94e2715f25539536b1e
|
| 741 |
+
depends:
|
| 742 |
+
- __glibc >=2.17,<3.0.a0
|
| 743 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 744 |
+
- libgcc >=12
|
| 745 |
+
- libstdcxx >=12
|
| 746 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 747 |
+
purls: []
|
| 748 |
+
size: 21755778
|
| 749 |
+
timestamp: 1744159278467
|
| 750 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvvm-tools-12.8.93-he02047a_3.conda
|
| 751 |
+
sha256: 11ea6ad293b37d6cf0847ee337cc27c2939befb9b0275b54353083a2a3d44a56
|
| 752 |
+
md5: 7a11cf7b5686e55ecb042dcede921592
|
| 753 |
+
depends:
|
| 754 |
+
- __glibc >=2.17,<3.0.a0
|
| 755 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 756 |
+
- libgcc >=12
|
| 757 |
+
- libstdcxx >=12
|
| 758 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 759 |
+
purls: []
|
| 760 |
+
size: 24620959
|
| 761 |
+
timestamp: 1744159329485
|
| 762 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvvp-12.8.93-hbd13f7d_1.conda
|
| 763 |
+
sha256: 3f1d0425c40f4699593309f6efbfca9e68ed3ff140ce166e883fb0d328372e80
|
| 764 |
+
md5: 369ce704d43d48ee42cb86c8aced7821
|
| 765 |
+
depends:
|
| 766 |
+
- __glibc >=2.17,<3.0.a0
|
| 767 |
+
- cuda-nvdisasm
|
| 768 |
+
- cuda-nvprof
|
| 769 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 770 |
+
- libgcc >=13
|
| 771 |
+
- libstdcxx >=13
|
| 772 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 773 |
+
purls: []
|
| 774 |
+
size: 117841961
|
| 775 |
+
timestamp: 1742487679508
|
| 776 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-opencl-12.8.90-h5888daf_1.conda
|
| 777 |
+
sha256: 1706a008e8b929ad6881601709c262d8b10cb7c1de685920f960621291b6fe91
|
| 778 |
+
md5: 0ad2529d6a5ed57e8544fb1db53c4bda
|
| 779 |
+
depends:
|
| 780 |
+
- __glibc >=2.17,<3.0.a0
|
| 781 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 782 |
+
- libgcc >=13
|
| 783 |
+
- libstdcxx >=13
|
| 784 |
+
- ocl-icd >=2.3.2,<3.0a0
|
| 785 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 786 |
+
purls: []
|
| 787 |
+
size: 30675
|
| 788 |
+
timestamp: 1743624874961
|
| 789 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-opencl-dev-12.8.90-h5888daf_1.conda
|
| 790 |
+
sha256: 0a2799e5efed91260a6455f9c7d80fdc5ccdc4d4dcc0d2981d2466d5fac2c1e6
|
| 791 |
+
md5: ff573cdd1ec63f43ebadea0a3203c36b
|
| 792 |
+
depends:
|
| 793 |
+
- __glibc >=2.17,<3.0.a0
|
| 794 |
+
- cuda-opencl 12.8.90 h5888daf_1
|
| 795 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 796 |
+
- libgcc >=13
|
| 797 |
+
- libstdcxx >=13
|
| 798 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 799 |
+
purls: []
|
| 800 |
+
size: 97805
|
| 801 |
+
timestamp: 1743624882012
|
| 802 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-profiler-api-12.8.90-h7938cbb_1.conda
|
| 803 |
+
sha256: b0c53d54a1c072b7fde87fdf6913477122b87d25a5b45da5d707c1dcbf742d64
|
| 804 |
+
md5: d89511b2a329ce16fb8401d2109b0e61
|
| 805 |
+
depends:
|
| 806 |
+
- cuda-cudart-dev
|
| 807 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 808 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 809 |
+
purls: []
|
| 810 |
+
size: 23418
|
| 811 |
+
timestamp: 1742422697955
|
| 812 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-sanitizer-api-12.8.93-hbd13f7d_1.conda
|
| 813 |
+
sha256: 5051d7514f0b708705bf77925fb43b042bcf3ce08b1da0b8a782c02b1c398025
|
| 814 |
+
md5: 7ce68619ca40897948cb85a2eb4b804e
|
| 815 |
+
depends:
|
| 816 |
+
- __glibc >=2.17,<3.0.a0
|
| 817 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 818 |
+
- libgcc >=13
|
| 819 |
+
- libstdcxx >=13
|
| 820 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 821 |
+
purls: []
|
| 822 |
+
size: 9627766
|
| 823 |
+
timestamp: 1742488609296
|
| 824 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-toolkit-12.8.1-ha804496_0.conda
|
| 825 |
+
sha256: 980573191700fe636c5e6d578af1b9212fcc367e585a1155e199008478b26a64
|
| 826 |
+
md5: 2092ce02592ad420d2376cfc737e4a4c
|
| 827 |
+
depends:
|
| 828 |
+
- __linux
|
| 829 |
+
- cuda-compiler 12.8.1.*
|
| 830 |
+
- cuda-libraries 12.8.1.*
|
| 831 |
+
- cuda-libraries-dev 12.8.1.*
|
| 832 |
+
- cuda-nvml-dev 12.8.90.*
|
| 833 |
+
- cuda-tools 12.8.1.*
|
| 834 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 835 |
+
purls: []
|
| 836 |
+
size: 20115
|
| 837 |
+
timestamp: 1741401965713
|
| 838 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-tools-12.8.1-ha770c72_0.conda
|
| 839 |
+
sha256: b699f6a51bb727647faaacd24b9ac7bd0dc18d54cd53ebd456fb76649be9a1cd
|
| 840 |
+
md5: 87a81d76186e29192ab745ec33a24ed1
|
| 841 |
+
depends:
|
| 842 |
+
- cuda-command-line-tools 12.8.1.*
|
| 843 |
+
- cuda-visual-tools 12.8.1.*
|
| 844 |
+
- gds-tools 1.13.1.3.*
|
| 845 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 846 |
+
purls: []
|
| 847 |
+
size: 19967
|
| 848 |
+
timestamp: 1741395238183
|
| 849 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/cuda-version-12.8-h5d125a7_3.conda
|
| 850 |
+
sha256: 6f93ceb66267e69728d83cf98673221f6b1f95a3514b3a97777cfd0ef8e24f3f
|
| 851 |
+
md5: 794eaca58880616a508dd6f6eb389266
|
| 852 |
+
constrains:
|
| 853 |
+
- cudatoolkit 12.8|12.8.*
|
| 854 |
+
- __cuda >=12
|
| 855 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 856 |
+
purls: []
|
| 857 |
+
size: 21086
|
| 858 |
+
timestamp: 1737663758355
|
| 859 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cuda-visual-tools-12.8.1-ha770c72_0.conda
|
| 860 |
+
sha256: f60048402017d0babf77d14751a0b09e61b35c1b7adbc58fece4bb2189de870c
|
| 861 |
+
md5: 4fde525ad9f2021cff24f549edf5908a
|
| 862 |
+
depends:
|
| 863 |
+
- cuda-libraries-dev 12.8.1.*
|
| 864 |
+
- cuda-nsight 12.8.90.*
|
| 865 |
+
- cuda-nvml-dev 12.8.90.*
|
| 866 |
+
- cuda-nvvp 12.8.93.*
|
| 867 |
+
- nsight-compute 2025.1.1.2.*
|
| 868 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 869 |
+
purls: []
|
| 870 |
+
size: 20019
|
| 871 |
+
timestamp: 1741391257840
|
| 872 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.11.0-hfcd1e18_0.conda
|
| 873 |
+
sha256: 3fcc97ae3e89c150401a50a4de58794ffc67b1ed0e1851468fcc376980201e25
|
| 874 |
+
md5: 5da8c935dca9186673987f79cef0b2a5
|
| 875 |
+
depends:
|
| 876 |
+
- c-compiler 1.11.0 h4d9bdce_0
|
| 877 |
+
- gxx
|
| 878 |
+
- gxx_linux-64 14.*
|
| 879 |
+
license: BSD-3-Clause
|
| 880 |
+
license_family: BSD
|
| 881 |
+
purls: []
|
| 882 |
+
size: 6635
|
| 883 |
+
timestamp: 1753098722177
|
| 884 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda
|
| 885 |
+
sha256: 3b988146a50e165f0fa4e839545c679af88e4782ec284cc7b6d07dd226d6a068
|
| 886 |
+
md5: 679616eb5ad4e521c83da4650860aba7
|
| 887 |
+
depends:
|
| 888 |
+
- libstdcxx >=13
|
| 889 |
+
- libgcc >=13
|
| 890 |
+
- __glibc >=2.17,<3.0.a0
|
| 891 |
+
- libgcc >=13
|
| 892 |
+
- libexpat >=2.7.0,<3.0a0
|
| 893 |
+
- libzlib >=1.3.1,<2.0a0
|
| 894 |
+
- libglib >=2.84.2,<3.0a0
|
| 895 |
+
license: GPL-2.0-or-later
|
| 896 |
+
license_family: GPL
|
| 897 |
+
purls: []
|
| 898 |
+
size: 437860
|
| 899 |
+
timestamp: 1747855126005
|
| 900 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
|
| 901 |
+
sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
|
| 902 |
+
md5: 0c96522c6bdaed4b1566d11387caaf45
|
| 903 |
+
license: BSD-3-Clause
|
| 904 |
+
license_family: BSD
|
| 905 |
+
purls: []
|
| 906 |
+
size: 397370
|
| 907 |
+
timestamp: 1566932522327
|
| 908 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
|
| 909 |
+
sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
|
| 910 |
+
md5: 34893075a5c9e55cdafac56607368fc6
|
| 911 |
+
license: OFL-1.1
|
| 912 |
+
license_family: Other
|
| 913 |
+
purls: []
|
| 914 |
+
size: 96530
|
| 915 |
+
timestamp: 1620479909603
|
| 916 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
|
| 917 |
+
sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
|
| 918 |
+
md5: 4d59c254e01d9cde7957100457e2d5fb
|
| 919 |
+
license: OFL-1.1
|
| 920 |
+
license_family: Other
|
| 921 |
+
purls: []
|
| 922 |
+
size: 700814
|
| 923 |
+
timestamp: 1620479612257
|
| 924 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
|
| 925 |
+
sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
|
| 926 |
+
md5: 49023d73832ef61042f6a237cb2687e7
|
| 927 |
+
license: LicenseRef-Ubuntu-Font-Licence-Version-1.0
|
| 928 |
+
license_family: Other
|
| 929 |
+
purls: []
|
| 930 |
+
size: 1620504
|
| 931 |
+
timestamp: 1727511233259
|
| 932 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
|
| 933 |
+
sha256: 7093aa19d6df5ccb6ca50329ef8510c6acb6b0d8001191909397368b65b02113
|
| 934 |
+
md5: 8f5b0b297b59e1ac160ad4beec99dbee
|
| 935 |
+
depends:
|
| 936 |
+
- __glibc >=2.17,<3.0.a0
|
| 937 |
+
- freetype >=2.12.1,<3.0a0
|
| 938 |
+
- libexpat >=2.6.3,<3.0a0
|
| 939 |
+
- libgcc >=13
|
| 940 |
+
- libuuid >=2.38.1,<3.0a0
|
| 941 |
+
- libzlib >=1.3.1,<2.0a0
|
| 942 |
+
license: MIT
|
| 943 |
+
license_family: MIT
|
| 944 |
+
purls: []
|
| 945 |
+
size: 265599
|
| 946 |
+
timestamp: 1730283881107
|
| 947 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
|
| 948 |
+
sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
|
| 949 |
+
md5: fee5683a3f04bd15cbd8318b096a27ab
|
| 950 |
+
depends:
|
| 951 |
+
- fonts-conda-forge
|
| 952 |
+
license: BSD-3-Clause
|
| 953 |
+
license_family: BSD
|
| 954 |
+
purls: []
|
| 955 |
+
size: 3667
|
| 956 |
+
timestamp: 1566974674465
|
| 957 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
|
| 958 |
+
sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
|
| 959 |
+
md5: f766549260d6815b0c52253f1fb1bb29
|
| 960 |
+
depends:
|
| 961 |
+
- font-ttf-dejavu-sans-mono
|
| 962 |
+
- font-ttf-inconsolata
|
| 963 |
+
- font-ttf-source-code-pro
|
| 964 |
+
- font-ttf-ubuntu
|
| 965 |
+
license: BSD-3-Clause
|
| 966 |
+
license_family: BSD
|
| 967 |
+
purls: []
|
| 968 |
+
size: 4102
|
| 969 |
+
timestamp: 1566932280397
|
| 970 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
|
| 971 |
+
sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
|
| 972 |
+
md5: 4afc585cd97ba8a23809406cd8a9eda8
|
| 973 |
+
depends:
|
| 974 |
+
- libfreetype 2.14.1 ha770c72_0
|
| 975 |
+
- libfreetype6 2.14.1 h73754d4_0
|
| 976 |
+
license: GPL-2.0-only OR FTL
|
| 977 |
+
purls: []
|
| 978 |
+
size: 173114
|
| 979 |
+
timestamp: 1757945422243
|
| 980 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-14.3.0-h76bdaa0_7.conda
|
| 981 |
+
sha256: 5eae0f13f8012215c18fba5b74e10686c4720f5c6038a6cfbedcb91fe59eea3d
|
| 982 |
+
md5: cd5d2db69849f2fc7b592daf86c3015a
|
| 983 |
+
depends:
|
| 984 |
+
- conda-gcc-specs
|
| 985 |
+
- gcc_impl_linux-64 14.3.0.*
|
| 986 |
+
license: BSD-3-Clause
|
| 987 |
+
license_family: BSD
|
| 988 |
+
purls: []
|
| 989 |
+
size: 31025
|
| 990 |
+
timestamp: 1759966082917
|
| 991 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-14.3.0-hd9e9e21_7.conda
|
| 992 |
+
sha256: bddd2b13469334fdd474281753cf0b347ac16c3e123ecfdce556ba16fbda9454
|
| 993 |
+
md5: 54876317578ad4bf695aad97ff8398d9
|
| 994 |
+
depends:
|
| 995 |
+
- binutils_impl_linux-64 >=2.40
|
| 996 |
+
- libgcc >=14.3.0
|
| 997 |
+
- libgcc-devel_linux-64 14.3.0 h85bb3a7_107
|
| 998 |
+
- libgomp >=14.3.0
|
| 999 |
+
- libsanitizer 14.3.0 hd08acf3_7
|
| 1000 |
+
- libstdcxx >=14.3.0
|
| 1001 |
+
- sysroot_linux-64
|
| 1002 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1003 |
+
license_family: GPL
|
| 1004 |
+
purls: []
|
| 1005 |
+
size: 69987984
|
| 1006 |
+
timestamp: 1759965829687
|
| 1007 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-14.3.0-h298d278_12.conda
|
| 1008 |
+
sha256: 0c56509170aa709cf80ef0663e17a1ab22fc57051794088994fc60290b352f46
|
| 1009 |
+
md5: 051081e67fa626cf3021e507e4a73c79
|
| 1010 |
+
depends:
|
| 1011 |
+
- gcc_impl_linux-64 14.3.0.*
|
| 1012 |
+
- binutils_linux-64
|
| 1013 |
+
- sysroot_linux-64
|
| 1014 |
+
license: BSD-3-Clause
|
| 1015 |
+
license_family: BSD
|
| 1016 |
+
purls: []
|
| 1017 |
+
size: 27952
|
| 1018 |
+
timestamp: 1759866571695
|
| 1019 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gds-tools-1.13.1.3-h5888daf_1.conda
|
| 1020 |
+
sha256: 01ccddb610f778e6a57fefc4cb276f5b1cbe4aaf53284f81e8c61be2e3d654c8
|
| 1021 |
+
md5: 13098c417c866975ff04ef340c5e541b
|
| 1022 |
+
depends:
|
| 1023 |
+
- __glibc >=2.17,<3.0.a0
|
| 1024 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1025 |
+
- libcufile >=1.13.1.3,<2.0a0
|
| 1026 |
+
- libgcc >=13
|
| 1027 |
+
- libnuma >=2.0.18,<3.0a0
|
| 1028 |
+
- libstdcxx >=13
|
| 1029 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1030 |
+
purls: []
|
| 1031 |
+
size: 39630386
|
| 1032 |
+
timestamp: 1743625034421
|
| 1033 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
|
| 1034 |
+
sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c
|
| 1035 |
+
md5: c94a5994ef49749880a8139cf9afcbe1
|
| 1036 |
+
depends:
|
| 1037 |
+
- libgcc-ng >=12
|
| 1038 |
+
- libstdcxx-ng >=12
|
| 1039 |
+
license: GPL-2.0-or-later OR LGPL-3.0-or-later
|
| 1040 |
+
purls: []
|
| 1041 |
+
size: 460055
|
| 1042 |
+
timestamp: 1718980856608
|
| 1043 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-14.3.0-he448592_7.conda
|
| 1044 |
+
sha256: 7acf0ee3039453aa69f16da063136335a3511f9c157e222def8d03c8a56a1e03
|
| 1045 |
+
md5: 91dc0abe7274ac5019deaa6100643265
|
| 1046 |
+
depends:
|
| 1047 |
+
- gcc 14.3.0.*
|
| 1048 |
+
- gxx_impl_linux-64 14.3.0.*
|
| 1049 |
+
license: BSD-3-Clause
|
| 1050 |
+
license_family: BSD
|
| 1051 |
+
purls: []
|
| 1052 |
+
size: 30403
|
| 1053 |
+
timestamp: 1759966121169
|
| 1054 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-14.3.0-he663afc_7.conda
|
| 1055 |
+
sha256: 597579f6ce995c2a53dcb290c75d94819ca92f898687162f992a208a5ea1b65b
|
| 1056 |
+
md5: 2700e7aad63bca8c26c2042a6a7214d6
|
| 1057 |
+
depends:
|
| 1058 |
+
- gcc_impl_linux-64 14.3.0 hd9e9e21_7
|
| 1059 |
+
- libstdcxx-devel_linux-64 14.3.0 h85bb3a7_107
|
| 1060 |
+
- sysroot_linux-64
|
| 1061 |
+
- tzdata
|
| 1062 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1063 |
+
license_family: GPL
|
| 1064 |
+
purls: []
|
| 1065 |
+
size: 15187856
|
| 1066 |
+
timestamp: 1759966051354
|
| 1067 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-14.3.0-h95f728e_12.conda
|
| 1068 |
+
sha256: 559996c580c31b939702b819368ad19d2f610bbb5b568d033e3c78bea49e730f
|
| 1069 |
+
md5: 7778058aa8b54953ddd09c3297e59e4d
|
| 1070 |
+
depends:
|
| 1071 |
+
- gxx_impl_linux-64 14.3.0.*
|
| 1072 |
+
- gcc_linux-64 ==14.3.0 h298d278_12
|
| 1073 |
+
- binutils_linux-64
|
| 1074 |
+
- sysroot_linux-64
|
| 1075 |
+
license: BSD-3-Clause
|
| 1076 |
+
license_family: BSD
|
| 1077 |
+
purls: []
|
| 1078 |
+
size: 27050
|
| 1079 |
+
timestamp: 1759866571696
|
| 1080 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
|
| 1081 |
+
sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e
|
| 1082 |
+
md5: 8b189310083baabfb622af68fd9d3ae3
|
| 1083 |
+
depends:
|
| 1084 |
+
- __glibc >=2.17,<3.0.a0
|
| 1085 |
+
- libgcc-ng >=12
|
| 1086 |
+
- libstdcxx-ng >=12
|
| 1087 |
+
license: MIT
|
| 1088 |
+
license_family: MIT
|
| 1089 |
+
purls: []
|
| 1090 |
+
size: 12129203
|
| 1091 |
+
timestamp: 1720853576813
|
| 1092 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_8.conda
|
| 1093 |
+
sha256: 305c22a251db227679343fd73bfde121e555d466af86e537847f4c8b9436be0d
|
| 1094 |
+
md5: ff007ab0f0fdc53d245972bba8a6d40c
|
| 1095 |
+
constrains:
|
| 1096 |
+
- sysroot_linux-64 ==2.28
|
| 1097 |
+
license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
|
| 1098 |
+
license_family: GPL
|
| 1099 |
+
purls: []
|
| 1100 |
+
size: 1272697
|
| 1101 |
+
timestamp: 1752669126073
|
| 1102 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
|
| 1103 |
+
sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
|
| 1104 |
+
md5: b38117a3c920364aff79f870c984b4a3
|
| 1105 |
+
depends:
|
| 1106 |
+
- __glibc >=2.17,<3.0.a0
|
| 1107 |
+
- libgcc >=13
|
| 1108 |
+
license: LGPL-2.1-or-later
|
| 1109 |
+
purls: []
|
| 1110 |
+
size: 134088
|
| 1111 |
+
timestamp: 1754905959823
|
| 1112 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
|
| 1113 |
+
sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
|
| 1114 |
+
md5: 3f43953b7d3fb3aaa1d0d0723d91e368
|
| 1115 |
+
depends:
|
| 1116 |
+
- keyutils >=1.6.1,<2.0a0
|
| 1117 |
+
- libedit >=3.1.20191231,<3.2.0a0
|
| 1118 |
+
- libedit >=3.1.20191231,<4.0a0
|
| 1119 |
+
- libgcc-ng >=12
|
| 1120 |
+
- libstdcxx-ng >=12
|
| 1121 |
+
- openssl >=3.3.1,<4.0a0
|
| 1122 |
+
license: MIT
|
| 1123 |
+
license_family: MIT
|
| 1124 |
+
purls: []
|
| 1125 |
+
size: 1370023
|
| 1126 |
+
timestamp: 1719463201255
|
| 1127 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-ha97dd6f_2.conda
|
| 1128 |
+
sha256: 707dfb8d55d7a5c6f95c772d778ef07a7ca85417d9971796f7d3daad0b615de8
|
| 1129 |
+
md5: 14bae321b8127b63cba276bd53fac237
|
| 1130 |
+
depends:
|
| 1131 |
+
- __glibc >=2.17,<3.0.a0
|
| 1132 |
+
constrains:
|
| 1133 |
+
- binutils_impl_linux-64 2.44
|
| 1134 |
+
license: GPL-3.0-only
|
| 1135 |
+
license_family: GPL
|
| 1136 |
+
purls: []
|
| 1137 |
+
size: 747158
|
| 1138 |
+
timestamp: 1758810907507
|
| 1139 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.76-h0b2e76d_0.conda
|
| 1140 |
+
sha256: a946b61be1af15ff08c7722e9bac0fab446d8b9896c9f0f35657dfcf887fda8a
|
| 1141 |
+
md5: 0f7f0c878c8dceb3b9ec67f5c06d6057
|
| 1142 |
+
depends:
|
| 1143 |
+
- __glibc >=2.17,<3.0.a0
|
| 1144 |
+
- attr >=2.5.1,<2.6.0a0
|
| 1145 |
+
- libgcc >=13
|
| 1146 |
+
license: BSD-3-Clause
|
| 1147 |
+
license_family: BSD
|
| 1148 |
+
purls: []
|
| 1149 |
+
size: 121852
|
| 1150 |
+
timestamp: 1744577167992
|
| 1151 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcublas-12.8.4.1-h9ab20c4_1.conda
|
| 1152 |
+
sha256: 3d3f7344db000feced2f9154cf0b3f3d245a1d317a1981e43b8b15f7baaaf6f1
|
| 1153 |
+
md5: 3ba4fd8bef181c020173d29ac67cae68
|
| 1154 |
+
depends:
|
| 1155 |
+
- __glibc >=2.28,<3.0.a0
|
| 1156 |
+
- cuda-nvrtc
|
| 1157 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1158 |
+
- libgcc >=13
|
| 1159 |
+
- libstdcxx >=13
|
| 1160 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1161 |
+
purls: []
|
| 1162 |
+
size: 471593172
|
| 1163 |
+
timestamp: 1742405543791
|
| 1164 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcublas-dev-12.8.4.1-h9ab20c4_1.conda
|
| 1165 |
+
sha256: bb745bef93a2a575ba127f7ca892febbf0e99e20b18bdf8e209351c4fe885d65
|
| 1166 |
+
md5: c5b1e0d5260f8cc43af6f5fc16f9424c
|
| 1167 |
+
depends:
|
| 1168 |
+
- __glibc >=2.28,<3.0.a0
|
| 1169 |
+
- cuda-crt-dev_linux-64
|
| 1170 |
+
- cuda-cudart-dev_linux-64
|
| 1171 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1172 |
+
- libcublas 12.8.4.1 h9ab20c4_1
|
| 1173 |
+
- libgcc >=13
|
| 1174 |
+
- libstdcxx >=13
|
| 1175 |
+
constrains:
|
| 1176 |
+
- libcublas-static >=12.8.4.1
|
| 1177 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1178 |
+
purls: []
|
| 1179 |
+
size: 91388
|
| 1180 |
+
timestamp: 1742406432538
|
| 1181 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufft-11.3.3.83-h5888daf_1.conda
|
| 1182 |
+
sha256: 1a38727a9666b7020ad844fd5074693b2c378d0161f58401d9f8488bdeb920a1
|
| 1183 |
+
md5: d0d12b6842be47267e3214e7ab2b1b02
|
| 1184 |
+
depends:
|
| 1185 |
+
- __glibc >=2.17,<3.0.a0
|
| 1186 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1187 |
+
- libgcc >=13
|
| 1188 |
+
- libstdcxx >=13
|
| 1189 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1190 |
+
purls: []
|
| 1191 |
+
size: 154743307
|
| 1192 |
+
timestamp: 1742415975122
|
| 1193 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufft-dev-11.3.3.83-h5888daf_1.conda
|
| 1194 |
+
sha256: 4b81551bc99d99aebd005f084d018d5b425b8a4475dcbab5d1a5e049ddfd2c39
|
| 1195 |
+
md5: f2ac0669e1dd52dc5539119dd94e0458
|
| 1196 |
+
depends:
|
| 1197 |
+
- __glibc >=2.17,<3.0.a0
|
| 1198 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1199 |
+
- libcufft 11.3.3.83 h5888daf_1
|
| 1200 |
+
- libgcc >=13
|
| 1201 |
+
- libstdcxx >=13
|
| 1202 |
+
constrains:
|
| 1203 |
+
- libcufft-static >=11.3.3.83
|
| 1204 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1205 |
+
purls: []
|
| 1206 |
+
size: 33996
|
| 1207 |
+
timestamp: 1742416361653
|
| 1208 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufile-1.13.1.3-h628e99a_1.conda
|
| 1209 |
+
sha256: 213f5df6ed25d19c4390666708a32ea457b1dcda64aca121f861b94671e2ed63
|
| 1210 |
+
md5: 9a97a35e7e63910013d638c389fa3514
|
| 1211 |
+
depends:
|
| 1212 |
+
- __glibc >=2.17,<3.0.a0
|
| 1213 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1214 |
+
- libgcc >=13
|
| 1215 |
+
- libstdcxx >=13
|
| 1216 |
+
- rdma-core >=55.0
|
| 1217 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1218 |
+
purls: []
|
| 1219 |
+
size: 960749
|
| 1220 |
+
timestamp: 1743624986191
|
| 1221 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcufile-dev-1.13.1.3-h5888daf_1.conda
|
| 1222 |
+
sha256: 2ae87005e291fffbcbce7c9cf65062ae464030072d5eaea4f1f18ae19e6a5a90
|
| 1223 |
+
md5: 6aaa4d5464ffeb274611e28db2ddafa2
|
| 1224 |
+
depends:
|
| 1225 |
+
- __glibc >=2.17,<3.0.a0
|
| 1226 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1227 |
+
- libcufile 1.13.1.3 h628e99a_1
|
| 1228 |
+
- libgcc >=13
|
| 1229 |
+
- libstdcxx >=13
|
| 1230 |
+
constrains:
|
| 1231 |
+
- libcufile-static >=1.13.1.3
|
| 1232 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1233 |
+
purls: []
|
| 1234 |
+
size: 35023
|
| 1235 |
+
timestamp: 1743625021471
|
| 1236 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurand-10.3.9.90-h9ab20c4_1.conda
|
| 1237 |
+
sha256: 379b2fd280bc4f4da999ab6560f56d4d3c02485089fb5f50b8933731a3eb5078
|
| 1238 |
+
md5: 06061f033297d93999b89d3c067f5f1c
|
| 1239 |
+
depends:
|
| 1240 |
+
- __glibc >=2.28,<3.0.a0
|
| 1241 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1242 |
+
- libgcc >=13
|
| 1243 |
+
- libstdcxx >=13
|
| 1244 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1245 |
+
purls: []
|
| 1246 |
+
size: 45729190
|
| 1247 |
+
timestamp: 1742487698497
|
| 1248 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurand-dev-10.3.9.90-h9ab20c4_1.conda
|
| 1249 |
+
sha256: 430e6de4038e4769e6eee6b18cfda02b40c9abebca917a9bbd874d4ffa57001e
|
| 1250 |
+
md5: 0fb97b378c464031ae1a720cdb6feddf
|
| 1251 |
+
depends:
|
| 1252 |
+
- __glibc >=2.28,<3.0.a0
|
| 1253 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1254 |
+
- libcurand 10.3.9.90 h9ab20c4_1
|
| 1255 |
+
- libgcc >=13
|
| 1256 |
+
- libstdcxx >=13
|
| 1257 |
+
constrains:
|
| 1258 |
+
- libcurand-static >=10.3.9.90
|
| 1259 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1260 |
+
purls: []
|
| 1261 |
+
size: 246729
|
| 1262 |
+
timestamp: 1742487805723
|
| 1263 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusolver-11.7.3.90-h9ab20c4_1.conda
|
| 1264 |
+
sha256: 868ba1b0b0ae15f7621ee960a459a74b9a17b69ba629c510a11bb37480e7b6df
|
| 1265 |
+
md5: 2d58a7eb9150525ea89195cf1bcfbc4c
|
| 1266 |
+
depends:
|
| 1267 |
+
- __glibc >=2.28,<3.0.a0
|
| 1268 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1269 |
+
- libcublas >=12.8.4.1,<12.9.0a0
|
| 1270 |
+
- libcusparse >=12.5.8.93,<12.6.0a0
|
| 1271 |
+
- libgcc >=13
|
| 1272 |
+
- libnvjitlink >=12.8.93,<13.0.0a0
|
| 1273 |
+
- libstdcxx >=13
|
| 1274 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1275 |
+
purls: []
|
| 1276 |
+
size: 164375128
|
| 1277 |
+
timestamp: 1742415308752
|
| 1278 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusolver-dev-11.7.3.90-h9ab20c4_1.conda
|
| 1279 |
+
sha256: 8cb85c63acd31ede63b30be3012eac4c2ec6112ce51edcbeea262bd5279a5369
|
| 1280 |
+
md5: bc20435174e018b95646eac41780922f
|
| 1281 |
+
depends:
|
| 1282 |
+
- __glibc >=2.28,<3.0.a0
|
| 1283 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1284 |
+
- libcusolver 11.7.3.90 h9ab20c4_1
|
| 1285 |
+
- libgcc >=13
|
| 1286 |
+
- libstdcxx >=13
|
| 1287 |
+
constrains:
|
| 1288 |
+
- libcusolver-static >=11.7.3.90
|
| 1289 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1290 |
+
purls: []
|
| 1291 |
+
size: 61032
|
| 1292 |
+
timestamp: 1742415570459
|
| 1293 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusparse-12.5.8.93-h5888daf_1.conda
|
| 1294 |
+
sha256: c97c95beedc098c5a9ec9250ac6eaf1a7db4c8475de0e4f42997df973133a7e3
|
| 1295 |
+
md5: 2ba14c21959411d913a0e74f58d52e08
|
| 1296 |
+
depends:
|
| 1297 |
+
- __glibc >=2.17,<3.0.a0
|
| 1298 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1299 |
+
- libgcc >=13
|
| 1300 |
+
- libnvjitlink >=12.8.93,<13.0.0a0
|
| 1301 |
+
- libstdcxx >=13
|
| 1302 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1303 |
+
purls: []
|
| 1304 |
+
size: 170119902
|
| 1305 |
+
timestamp: 1743620054443
|
| 1306 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcusparse-dev-12.5.8.93-h5888daf_1.conda
|
| 1307 |
+
sha256: 5cb875fa5ae065754fccde4b8fd3b7fc87158d6b84914866ea62d5606cddacfb
|
| 1308 |
+
md5: 2d86d0c78cefae3e5286b3aeec8ec39b
|
| 1309 |
+
depends:
|
| 1310 |
+
- __glibc >=2.17,<3.0.a0
|
| 1311 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1312 |
+
- libcusparse 12.5.8.93 h5888daf_1
|
| 1313 |
+
- libgcc >=13
|
| 1314 |
+
- libnvjitlink >=12.8.93,<13.0.0a0
|
| 1315 |
+
- libstdcxx >=13
|
| 1316 |
+
constrains:
|
| 1317 |
+
- libcusparse-static >=12.5.8.93
|
| 1318 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1319 |
+
purls: []
|
| 1320 |
+
size: 52819
|
| 1321 |
+
timestamp: 1743620381340
|
| 1322 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
|
| 1323 |
+
sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724
|
| 1324 |
+
md5: c277e0a4d549b03ac1e9d6cbbe3d017b
|
| 1325 |
+
depends:
|
| 1326 |
+
- ncurses
|
| 1327 |
+
- __glibc >=2.17,<3.0.a0
|
| 1328 |
+
- libgcc >=13
|
| 1329 |
+
- ncurses >=6.5,<7.0a0
|
| 1330 |
+
license: BSD-2-Clause
|
| 1331 |
+
license_family: BSD
|
| 1332 |
+
purls: []
|
| 1333 |
+
size: 134676
|
| 1334 |
+
timestamp: 1738479519902
|
| 1335 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
|
| 1336 |
+
sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2
|
| 1337 |
+
md5: 4211416ecba1866fab0c6470986c22d6
|
| 1338 |
+
depends:
|
| 1339 |
+
- __glibc >=2.17,<3.0.a0
|
| 1340 |
+
- libgcc >=14
|
| 1341 |
+
constrains:
|
| 1342 |
+
- expat 2.7.1.*
|
| 1343 |
+
license: MIT
|
| 1344 |
+
license_family: MIT
|
| 1345 |
+
purls: []
|
| 1346 |
+
size: 74811
|
| 1347 |
+
timestamp: 1752719572741
|
| 1348 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
|
| 1349 |
+
sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab
|
| 1350 |
+
md5: ede4673863426c0883c0063d853bbd85
|
| 1351 |
+
depends:
|
| 1352 |
+
- __glibc >=2.17,<3.0.a0
|
| 1353 |
+
- libgcc >=13
|
| 1354 |
+
license: MIT
|
| 1355 |
+
license_family: MIT
|
| 1356 |
+
purls: []
|
| 1357 |
+
size: 57433
|
| 1358 |
+
timestamp: 1743434498161
|
| 1359 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
|
| 1360 |
+
sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec
|
| 1361 |
+
md5: f4084e4e6577797150f9b04a4560ceb0
|
| 1362 |
+
depends:
|
| 1363 |
+
- libfreetype6 >=2.14.1
|
| 1364 |
+
license: GPL-2.0-only OR FTL
|
| 1365 |
+
purls: []
|
| 1366 |
+
size: 7664
|
| 1367 |
+
timestamp: 1757945417134
|
| 1368 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
|
| 1369 |
+
sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652
|
| 1370 |
+
md5: 8e7251989bca326a28f4a5ffbd74557a
|
| 1371 |
+
depends:
|
| 1372 |
+
- __glibc >=2.17,<3.0.a0
|
| 1373 |
+
- libgcc >=14
|
| 1374 |
+
- libpng >=1.6.50,<1.7.0a0
|
| 1375 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1376 |
+
constrains:
|
| 1377 |
+
- freetype >=2.14.1
|
| 1378 |
+
license: GPL-2.0-only OR FTL
|
| 1379 |
+
purls: []
|
| 1380 |
+
size: 386739
|
| 1381 |
+
timestamp: 1757945416744
|
| 1382 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda
|
| 1383 |
+
sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45
|
| 1384 |
+
md5: c0374badb3a5d4b1372db28d19462c53
|
| 1385 |
+
depends:
|
| 1386 |
+
- __glibc >=2.17,<3.0.a0
|
| 1387 |
+
- _openmp_mutex >=4.5
|
| 1388 |
+
constrains:
|
| 1389 |
+
- libgomp 15.2.0 h767d61c_7
|
| 1390 |
+
- libgcc-ng ==15.2.0=*_7
|
| 1391 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1392 |
+
license_family: GPL
|
| 1393 |
+
purls: []
|
| 1394 |
+
size: 822552
|
| 1395 |
+
timestamp: 1759968052178
|
| 1396 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-14.3.0-h85bb3a7_107.conda
|
| 1397 |
+
sha256: 57a1e792e9cffb3e641c84d3830eb637a81c85f33bdc3d45ac7b653c701f9d68
|
| 1398 |
+
md5: 84915638a998fae4d495fa038683a73e
|
| 1399 |
+
depends:
|
| 1400 |
+
- __unix
|
| 1401 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1402 |
+
license_family: GPL
|
| 1403 |
+
purls: []
|
| 1404 |
+
size: 2731390
|
| 1405 |
+
timestamp: 1759965626607
|
| 1406 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda
|
| 1407 |
+
sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad
|
| 1408 |
+
md5: 280ea6eee9e2ddefde25ff799c4f0363
|
| 1409 |
+
depends:
|
| 1410 |
+
- libgcc 15.2.0 h767d61c_7
|
| 1411 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1412 |
+
license_family: GPL
|
| 1413 |
+
purls: []
|
| 1414 |
+
size: 29313
|
| 1415 |
+
timestamp: 1759968065504
|
| 1416 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
|
| 1417 |
+
sha256: dc9c7d7a6c0e6639deee6fde2efdc7e119e7739a6b229fa5f9049a449bae6109
|
| 1418 |
+
md5: 8504a291085c9fb809b66cabd5834307
|
| 1419 |
+
depends:
|
| 1420 |
+
- __glibc >=2.17,<3.0.a0
|
| 1421 |
+
- libgcc >=13
|
| 1422 |
+
- libgpg-error >=1.55,<2.0a0
|
| 1423 |
+
license: LGPL-2.1-or-later
|
| 1424 |
+
purls: []
|
| 1425 |
+
size: 590353
|
| 1426 |
+
timestamp: 1747060639058
|
| 1427 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.86.0-h1fed272_0.conda
|
| 1428 |
+
sha256: 33336bd55981be938f4823db74291e1323454491623de0be61ecbe6cf3a4619c
|
| 1429 |
+
md5: b8e4c93f4ab70c3b6f6499299627dbdc
|
| 1430 |
+
depends:
|
| 1431 |
+
- __glibc >=2.17,<3.0.a0
|
| 1432 |
+
- libffi >=3.4.6,<3.5.0a0
|
| 1433 |
+
- libgcc >=14
|
| 1434 |
+
- libiconv >=1.18,<2.0a0
|
| 1435 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1436 |
+
- pcre2 >=10.46,<10.47.0a0
|
| 1437 |
+
constrains:
|
| 1438 |
+
- glib 2.86.0 *_0
|
| 1439 |
+
license: LGPL-2.1-or-later
|
| 1440 |
+
purls: []
|
| 1441 |
+
size: 3978602
|
| 1442 |
+
timestamp: 1757403291664
|
| 1443 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
|
| 1444 |
+
sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850
|
| 1445 |
+
md5: 434ca7e50e40f4918ab701e3facd59a0
|
| 1446 |
+
depends:
|
| 1447 |
+
- __glibc >=2.17,<3.0.a0
|
| 1448 |
+
license: LicenseRef-libglvnd
|
| 1449 |
+
purls: []
|
| 1450 |
+
size: 132463
|
| 1451 |
+
timestamp: 1731330968309
|
| 1452 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda
|
| 1453 |
+
sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca
|
| 1454 |
+
md5: f7b4d76975aac7e5d9e6ad13845f92fe
|
| 1455 |
+
depends:
|
| 1456 |
+
- __glibc >=2.17,<3.0.a0
|
| 1457 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1458 |
+
license_family: GPL
|
| 1459 |
+
purls: []
|
| 1460 |
+
size: 447919
|
| 1461 |
+
timestamp: 1759967942498
|
| 1462 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
|
| 1463 |
+
sha256: 697334de4786a1067ea86853e520c64dd72b11a05137f5b318d8a444007b5e60
|
| 1464 |
+
md5: 2bd47db5807daade8500ed7ca4c512a4
|
| 1465 |
+
depends:
|
| 1466 |
+
- libstdcxx >=13
|
| 1467 |
+
- libgcc >=13
|
| 1468 |
+
- __glibc >=2.17,<3.0.a0
|
| 1469 |
+
- libgcc >=13
|
| 1470 |
+
license: LGPL-2.1-only
|
| 1471 |
+
purls: []
|
| 1472 |
+
size: 312184
|
| 1473 |
+
timestamp: 1745575272035
|
| 1474 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
|
| 1475 |
+
sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
|
| 1476 |
+
md5: 915f5995e94f60e9a4826e0b0920ee88
|
| 1477 |
+
depends:
|
| 1478 |
+
- __glibc >=2.17,<3.0.a0
|
| 1479 |
+
- libgcc >=14
|
| 1480 |
+
license: LGPL-2.1-only
|
| 1481 |
+
purls: []
|
| 1482 |
+
size: 790176
|
| 1483 |
+
timestamp: 1754908768807
|
| 1484 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
| 1485 |
+
sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8
|
| 1486 |
+
md5: 1a580f7796c7bf6393fddb8bbbde58dc
|
| 1487 |
+
depends:
|
| 1488 |
+
- __glibc >=2.17,<3.0.a0
|
| 1489 |
+
- libgcc >=13
|
| 1490 |
+
constrains:
|
| 1491 |
+
- xz 5.8.1.*
|
| 1492 |
+
license: 0BSD
|
| 1493 |
+
purls: []
|
| 1494 |
+
size: 112894
|
| 1495 |
+
timestamp: 1749230047870
|
| 1496 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnl-3.11.0-hb9d3cd8_0.conda
|
| 1497 |
+
sha256: ba7c5d294e3d80f08ac5a39564217702d1a752e352e486210faff794ac5001b4
|
| 1498 |
+
md5: db63358239cbe1ff86242406d440e44a
|
| 1499 |
+
depends:
|
| 1500 |
+
- __glibc >=2.17,<3.0.a0
|
| 1501 |
+
- libgcc >=13
|
| 1502 |
+
license: LGPL-2.1-or-later
|
| 1503 |
+
license_family: LGPL
|
| 1504 |
+
purls: []
|
| 1505 |
+
size: 741323
|
| 1506 |
+
timestamp: 1731846827427
|
| 1507 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnpp-12.3.3.100-h9ab20c4_1.conda
|
| 1508 |
+
sha256: ca37be30fb0f2a646c30007412e0eb0b9ab9afb9b193476c170abeaf91601989
|
| 1509 |
+
md5: 80a547b3eacfa9029330045939191c98
|
| 1510 |
+
depends:
|
| 1511 |
+
- __glibc >=2.28,<3.0.a0
|
| 1512 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1513 |
+
- libgcc >=13
|
| 1514 |
+
- libstdcxx >=13
|
| 1515 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1516 |
+
purls: []
|
| 1517 |
+
size: 136941651
|
| 1518 |
+
timestamp: 1742487367851
|
| 1519 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnpp-dev-12.3.3.100-h9ab20c4_1.conda
|
| 1520 |
+
sha256: 006571c5a9777fff8720eb44992c8118d0dd7786b8661ce833199f53ebf56f3e
|
| 1521 |
+
md5: ff45ac911cdc45ffb84eb6d06a0d4749
|
| 1522 |
+
depends:
|
| 1523 |
+
- __glibc >=2.28,<3.0.a0
|
| 1524 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1525 |
+
- libgcc >=13
|
| 1526 |
+
- libnpp 12.3.3.100 h9ab20c4_1
|
| 1527 |
+
- libstdcxx >=13
|
| 1528 |
+
constrains:
|
| 1529 |
+
- libnpp-static >=12.3.3.100
|
| 1530 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1531 |
+
purls: []
|
| 1532 |
+
size: 453838
|
| 1533 |
+
timestamp: 1742487623161
|
| 1534 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
|
| 1535 |
+
sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5
|
| 1536 |
+
md5: d864d34357c3b65a4b731f78c0801dc4
|
| 1537 |
+
depends:
|
| 1538 |
+
- __glibc >=2.17,<3.0.a0
|
| 1539 |
+
- libgcc >=13
|
| 1540 |
+
license: LGPL-2.1-only
|
| 1541 |
+
license_family: GPL
|
| 1542 |
+
purls: []
|
| 1543 |
+
size: 33731
|
| 1544 |
+
timestamp: 1750274110928
|
| 1545 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.18-hb9d3cd8_3.conda
|
| 1546 |
+
sha256: eb130af5be94c7db5e3448c7f254f8e066e62d1b76cd1c6c7c33f3565a55a685
|
| 1547 |
+
md5: 20ab6b90150325f1af7ca96bffafde63
|
| 1548 |
+
depends:
|
| 1549 |
+
- __glibc >=2.17,<3.0.a0
|
| 1550 |
+
- libgcc >=13
|
| 1551 |
+
license: LGPL-2.1-only
|
| 1552 |
+
purls: []
|
| 1553 |
+
size: 44030
|
| 1554 |
+
timestamp: 1749573854077
|
| 1555 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvfatbin-12.8.90-h5888daf_1.conda
|
| 1556 |
+
sha256: 8c3936b40292638268dd5ba0bc5c0dbac81d35898e3adeaa47f7a5f746fdff7c
|
| 1557 |
+
md5: 4f41e3324154f6b6c1de16f347848a10
|
| 1558 |
+
depends:
|
| 1559 |
+
- __glibc >=2.17,<3.0.a0
|
| 1560 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1561 |
+
- libgcc >=13
|
| 1562 |
+
- libstdcxx >=13
|
| 1563 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1564 |
+
purls: []
|
| 1565 |
+
size: 812547
|
| 1566 |
+
timestamp: 1743628411901
|
| 1567 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvfatbin-dev-12.8.90-h5888daf_1.conda
|
| 1568 |
+
sha256: d3e18de72611aa6674c648d2bb2444fa324852bd224ddb6182c4cb1858144bb5
|
| 1569 |
+
md5: d269122b3cc39b10c955658332347695
|
| 1570 |
+
depends:
|
| 1571 |
+
- __glibc >=2.17,<3.0.a0
|
| 1572 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1573 |
+
- libgcc >=13
|
| 1574 |
+
- libnvfatbin 12.8.90 h5888daf_1
|
| 1575 |
+
- libstdcxx >=13
|
| 1576 |
+
constrains:
|
| 1577 |
+
- liblibnvfatbin-static >=12.8.90
|
| 1578 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1579 |
+
purls: []
|
| 1580 |
+
size: 26980
|
| 1581 |
+
timestamp: 1743628432396
|
| 1582 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjitlink-12.8.93-h5888daf_1.conda
|
| 1583 |
+
sha256: 254737c0ffb506f3a69aaeb11ea95b8e0fb2689d9e87d6bba13b575fe5d00c1c
|
| 1584 |
+
md5: 8f5ccfab9b7cb2560d5e11dd14763d82
|
| 1585 |
+
depends:
|
| 1586 |
+
- __glibc >=2.17,<3.0.a0
|
| 1587 |
+
- cuda-version >=12,<12.9.0a0
|
| 1588 |
+
- libgcc >=13
|
| 1589 |
+
- libstdcxx >=13
|
| 1590 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1591 |
+
purls: []
|
| 1592 |
+
size: 30128577
|
| 1593 |
+
timestamp: 1742414274976
|
| 1594 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjitlink-dev-12.8.93-h5888daf_1.conda
|
| 1595 |
+
sha256: a842d702378e35a4b0a7a3bcdb2f4d873ee0b3cfad218924efa8262295abf779
|
| 1596 |
+
md5: 2abb54b27168bc57efa6c773901af45b
|
| 1597 |
+
depends:
|
| 1598 |
+
- __glibc >=2.17,<3.0.a0
|
| 1599 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1600 |
+
- libgcc >=13
|
| 1601 |
+
- libnvjitlink 12.8.93 h5888daf_1
|
| 1602 |
+
- libstdcxx >=13
|
| 1603 |
+
constrains:
|
| 1604 |
+
- libnvjitlink-static >=12.8.93
|
| 1605 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1606 |
+
purls: []
|
| 1607 |
+
size: 26242
|
| 1608 |
+
timestamp: 1742414429877
|
| 1609 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjpeg-12.3.5.92-h5888daf_1.conda
|
| 1610 |
+
sha256: 43068f6bac747852a7eb281e51d9cc1e3004eb57e0e69ab48a41025a24c0fa98
|
| 1611 |
+
md5: 342f643921f399a6bff14e066601b032
|
| 1612 |
+
depends:
|
| 1613 |
+
- __glibc >=2.17,<3.0.a0
|
| 1614 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1615 |
+
- libgcc >=13
|
| 1616 |
+
- libstdcxx >=13
|
| 1617 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1618 |
+
purls: []
|
| 1619 |
+
size: 3110993
|
| 1620 |
+
timestamp: 1743624752657
|
| 1621 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnvjpeg-dev-12.3.5.92-ha770c72_1.conda
|
| 1622 |
+
sha256: 6ac7c2de09f147c1f650349bcc69f6e84cbb9d78e7f27a7eb7ae085ba04c0064
|
| 1623 |
+
md5: 74bd8df5096e07ff17795837ca9aa34b
|
| 1624 |
+
depends:
|
| 1625 |
+
- cuda-cudart-dev
|
| 1626 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1627 |
+
- libnvjpeg 12.3.5.92 h5888daf_1
|
| 1628 |
+
constrains:
|
| 1629 |
+
- libnvjpeg-static >=12.3.5.92
|
| 1630 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1631 |
+
purls: []
|
| 1632 |
+
size: 32669
|
| 1633 |
+
timestamp: 1743624773129
|
| 1634 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
|
| 1635 |
+
sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead
|
| 1636 |
+
md5: 7df50d44d4a14d6c31a2c54f2cd92157
|
| 1637 |
+
depends:
|
| 1638 |
+
- __glibc >=2.17,<3.0.a0
|
| 1639 |
+
- libglvnd 1.7.0 ha4b6fd6_2
|
| 1640 |
+
license: LicenseRef-libglvnd
|
| 1641 |
+
purls: []
|
| 1642 |
+
size: 50757
|
| 1643 |
+
timestamp: 1731330993524
|
| 1644 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda
|
| 1645 |
+
sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347
|
| 1646 |
+
md5: 7af8e91b0deb5f8e25d1a595dea79614
|
| 1647 |
+
depends:
|
| 1648 |
+
- libgcc >=14
|
| 1649 |
+
- __glibc >=2.17,<3.0.a0
|
| 1650 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1651 |
+
license: zlib-acknowledgement
|
| 1652 |
+
purls: []
|
| 1653 |
+
size: 317390
|
| 1654 |
+
timestamp: 1753879899951
|
| 1655 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-14.3.0-hd08acf3_7.conda
|
| 1656 |
+
sha256: 73eb65f58ed086cf73fb9af3be4a9b288f630e9c2e1caacc75aff5f265d2dda2
|
| 1657 |
+
md5: 716f4c96e07207d74e635c915b8b3f8b
|
| 1658 |
+
depends:
|
| 1659 |
+
- __glibc >=2.17,<3.0.a0
|
| 1660 |
+
- libgcc >=14.3.0
|
| 1661 |
+
- libstdcxx >=14.3.0
|
| 1662 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1663 |
+
license_family: GPL
|
| 1664 |
+
purls: []
|
| 1665 |
+
size: 5110341
|
| 1666 |
+
timestamp: 1759965766003
|
| 1667 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda
|
| 1668 |
+
sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da
|
| 1669 |
+
md5: 0b367fad34931cb79e0d6b7e5c06bb1c
|
| 1670 |
+
depends:
|
| 1671 |
+
- __glibc >=2.17,<3.0.a0
|
| 1672 |
+
- libgcc >=14
|
| 1673 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1674 |
+
license: blessing
|
| 1675 |
+
purls: []
|
| 1676 |
+
size: 932581
|
| 1677 |
+
timestamp: 1753948484112
|
| 1678 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h8f9b012_7.conda
|
| 1679 |
+
sha256: 1b981647d9775e1cdeb2fab0a4dd9cd75a6b0de2963f6c3953dbd712f78334b3
|
| 1680 |
+
md5: 5b767048b1b3ee9a954b06f4084f93dc
|
| 1681 |
+
depends:
|
| 1682 |
+
- __glibc >=2.17,<3.0.a0
|
| 1683 |
+
- libgcc 15.2.0 h767d61c_7
|
| 1684 |
+
constrains:
|
| 1685 |
+
- libstdcxx-ng ==15.2.0=*_7
|
| 1686 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1687 |
+
license_family: GPL
|
| 1688 |
+
purls: []
|
| 1689 |
+
size: 3898269
|
| 1690 |
+
timestamp: 1759968103436
|
| 1691 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-14.3.0-h85bb3a7_107.conda
|
| 1692 |
+
sha256: 54ba5632d93faebbec3899d9df84c6e71c4574d70a2f3babfc5aac4247874038
|
| 1693 |
+
md5: eaf0f047b048c4d86a4b8c60c0e95f38
|
| 1694 |
+
depends:
|
| 1695 |
+
- __unix
|
| 1696 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1697 |
+
license_family: GPL
|
| 1698 |
+
purls: []
|
| 1699 |
+
size: 13244605
|
| 1700 |
+
timestamp: 1759965656146
|
| 1701 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-h4852527_7.conda
|
| 1702 |
+
sha256: 024fd46ac3ea8032a5ec3ea7b91c4c235701a8bf0e6520fe5e6539992a6bd05f
|
| 1703 |
+
md5: f627678cf829bd70bccf141a19c3ad3e
|
| 1704 |
+
depends:
|
| 1705 |
+
- libstdcxx 15.2.0 h8f9b012_7
|
| 1706 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
| 1707 |
+
license_family: GPL
|
| 1708 |
+
purls: []
|
| 1709 |
+
size: 29343
|
| 1710 |
+
timestamp: 1759968157195
|
| 1711 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.9-h996ca69_0.conda
|
| 1712 |
+
sha256: 6b063df2d13dc9cedeae7b1591b1917ced7f4e1b04f7246e66cc7fb0088dea07
|
| 1713 |
+
md5: b6d222422c17dc11123e63fae4ad4178
|
| 1714 |
+
depends:
|
| 1715 |
+
- __glibc >=2.17,<3.0.a0
|
| 1716 |
+
- libcap >=2.76,<2.77.0a0
|
| 1717 |
+
- libgcc >=14
|
| 1718 |
+
- libgcrypt-lib >=1.11.1,<2.0a0
|
| 1719 |
+
- liblzma >=5.8.1,<6.0a0
|
| 1720 |
+
- lz4-c >=1.10.0,<1.11.0a0
|
| 1721 |
+
- zstd >=1.5.7,<1.6.0a0
|
| 1722 |
+
license: LGPL-2.1-or-later
|
| 1723 |
+
purls: []
|
| 1724 |
+
size: 492733
|
| 1725 |
+
timestamp: 1757520335407
|
| 1726 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.9-h085a93f_0.conda
|
| 1727 |
+
sha256: 1c8f0b02c400617a9f2ea8429c604b28e25a10f51b3c8d73ce127b4e7b462297
|
| 1728 |
+
md5: 973f365f19c1d702bda523658a77de26
|
| 1729 |
+
depends:
|
| 1730 |
+
- __glibc >=2.17,<3.0.a0
|
| 1731 |
+
- libcap >=2.76,<2.77.0a0
|
| 1732 |
+
- libgcc >=14
|
| 1733 |
+
license: LGPL-2.1-or-later
|
| 1734 |
+
purls: []
|
| 1735 |
+
size: 144265
|
| 1736 |
+
timestamp: 1757520342166
|
| 1737 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.2-he9a06e4_0.conda
|
| 1738 |
+
sha256: e5ec6d2ad7eef538ddcb9ea62ad4346fde70a4736342c4ad87bd713641eb9808
|
| 1739 |
+
md5: 80c07c68d2f6870250959dcc95b209d1
|
| 1740 |
+
depends:
|
| 1741 |
+
- __glibc >=2.17,<3.0.a0
|
| 1742 |
+
- libgcc >=14
|
| 1743 |
+
license: BSD-3-Clause
|
| 1744 |
+
license_family: BSD
|
| 1745 |
+
purls: []
|
| 1746 |
+
size: 37135
|
| 1747 |
+
timestamp: 1758626800002
|
| 1748 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
|
| 1749 |
+
sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
|
| 1750 |
+
md5: 92ed62436b625154323d40d5f2f11dd7
|
| 1751 |
+
depends:
|
| 1752 |
+
- __glibc >=2.17,<3.0.a0
|
| 1753 |
+
- libgcc >=13
|
| 1754 |
+
- pthread-stubs
|
| 1755 |
+
- xorg-libxau >=1.0.11,<2.0a0
|
| 1756 |
+
- xorg-libxdmcp
|
| 1757 |
+
license: MIT
|
| 1758 |
+
license_family: MIT
|
| 1759 |
+
purls: []
|
| 1760 |
+
size: 395888
|
| 1761 |
+
timestamp: 1727278577118
|
| 1762 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
| 1763 |
+
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
|
| 1764 |
+
md5: 5aa797f8787fe7a17d1b0821485b5adc
|
| 1765 |
+
depends:
|
| 1766 |
+
- libgcc-ng >=12
|
| 1767 |
+
license: LGPL-2.1-or-later
|
| 1768 |
+
purls: []
|
| 1769 |
+
size: 100393
|
| 1770 |
+
timestamp: 1702724383534
|
| 1771 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.12.0-hca5e8e5_0.conda
|
| 1772 |
+
sha256: fac8ca6937eefe7c4c374343ff09d0d37246ac98171386ffc229da673ad293a9
|
| 1773 |
+
md5: 38d9cae31d66c1b73ab34e786bb3afe5
|
| 1774 |
+
depends:
|
| 1775 |
+
- __glibc >=2.17,<3.0.a0
|
| 1776 |
+
- libgcc >=14
|
| 1777 |
+
- libstdcxx >=14
|
| 1778 |
+
- libxcb >=1.17.0,<2.0a0
|
| 1779 |
+
- libxml2
|
| 1780 |
+
- libxml2-16 >=2.14.6
|
| 1781 |
+
- xkeyboard-config
|
| 1782 |
+
- xorg-libxau >=1.0.12,<2.0a0
|
| 1783 |
+
license: MIT/X11 Derivative
|
| 1784 |
+
license_family: MIT
|
| 1785 |
+
purls: []
|
| 1786 |
+
size: 827959
|
| 1787 |
+
timestamp: 1760093368612
|
| 1788 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbfile-1.1.0-h166bdaf_1.conda
|
| 1789 |
+
sha256: f7c9f4d42c9e87dcf7055c33e9957db4e319735de9bdd5d9ba5633c27b853ae1
|
| 1790 |
+
md5: c6274d38be57ac8b059b8e33d406aaf6
|
| 1791 |
+
depends:
|
| 1792 |
+
- libgcc-ng >=12
|
| 1793 |
+
license: MIT
|
| 1794 |
+
license_family: MIT
|
| 1795 |
+
purls: []
|
| 1796 |
+
size: 114087
|
| 1797 |
+
timestamp: 1676547070237
|
| 1798 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.0-h26afc86_1.conda
|
| 1799 |
+
sha256: 4310577d7eea817d35a1c05e1e54575b06ce085d73e6dd59aa38523adf50168f
|
| 1800 |
+
md5: 8337b675e0cad517fbcb3daf7588087a
|
| 1801 |
+
depends:
|
| 1802 |
+
- __glibc >=2.17,<3.0.a0
|
| 1803 |
+
- icu >=75.1,<76.0a0
|
| 1804 |
+
- libgcc >=14
|
| 1805 |
+
- libiconv >=1.18,<2.0a0
|
| 1806 |
+
- liblzma >=5.8.1,<6.0a0
|
| 1807 |
+
- libxml2-16 2.15.0 ha9997c6_1
|
| 1808 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1809 |
+
license: MIT
|
| 1810 |
+
license_family: MIT
|
| 1811 |
+
purls: []
|
| 1812 |
+
size: 45363
|
| 1813 |
+
timestamp: 1758640621036
|
| 1814 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.0-ha9997c6_1.conda
|
| 1815 |
+
sha256: 5420ea77505a8d5ca7b5351ddb2da7e8a178052fccf8fca00189af7877608e89
|
| 1816 |
+
md5: b24dd2bd61cd8e4f8a13ee2a945a723c
|
| 1817 |
+
depends:
|
| 1818 |
+
- __glibc >=2.17,<3.0.a0
|
| 1819 |
+
- icu >=75.1,<76.0a0
|
| 1820 |
+
- libgcc >=14
|
| 1821 |
+
- libiconv >=1.18,<2.0a0
|
| 1822 |
+
- liblzma >=5.8.1,<6.0a0
|
| 1823 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1824 |
+
constrains:
|
| 1825 |
+
- libxml2 2.15.0
|
| 1826 |
+
license: MIT
|
| 1827 |
+
license_family: MIT
|
| 1828 |
+
purls: []
|
| 1829 |
+
size: 556276
|
| 1830 |
+
timestamp: 1758640612398
|
| 1831 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
| 1832 |
+
sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
|
| 1833 |
+
md5: edb0dca6bc32e4f4789199455a1dbeb8
|
| 1834 |
+
depends:
|
| 1835 |
+
- __glibc >=2.17,<3.0.a0
|
| 1836 |
+
- libgcc >=13
|
| 1837 |
+
constrains:
|
| 1838 |
+
- zlib 1.3.1 *_2
|
| 1839 |
+
license: Zlib
|
| 1840 |
+
license_family: Other
|
| 1841 |
+
purls: []
|
| 1842 |
+
size: 60963
|
| 1843 |
+
timestamp: 1727963148474
|
| 1844 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
|
| 1845 |
+
sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346
|
| 1846 |
+
md5: 9de5350a85c4a20c685259b889aa6393
|
| 1847 |
+
depends:
|
| 1848 |
+
- __glibc >=2.17,<3.0.a0
|
| 1849 |
+
- libgcc >=13
|
| 1850 |
+
- libstdcxx >=13
|
| 1851 |
+
license: BSD-2-Clause
|
| 1852 |
+
license_family: BSD
|
| 1853 |
+
purls: []
|
| 1854 |
+
size: 167055
|
| 1855 |
+
timestamp: 1733741040117
|
| 1856 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
| 1857 |
+
sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
|
| 1858 |
+
md5: 47e340acb35de30501a76c7c799c41d7
|
| 1859 |
+
depends:
|
| 1860 |
+
- __glibc >=2.17,<3.0.a0
|
| 1861 |
+
- libgcc >=13
|
| 1862 |
+
license: X11 AND BSD-3-Clause
|
| 1863 |
+
purls: []
|
| 1864 |
+
size: 891641
|
| 1865 |
+
timestamp: 1738195959188
|
| 1866 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.13.1-h171cf75_0.conda
|
| 1867 |
+
sha256: 1522b6d4a55af3b5a4475db63a608aad4c250af9f05050064298dcebe5957d38
|
| 1868 |
+
md5: 6567fa1d9ca189076d9443a0b125541c
|
| 1869 |
+
depends:
|
| 1870 |
+
- libstdcxx >=14
|
| 1871 |
+
- libgcc >=14
|
| 1872 |
+
- __glibc >=2.17,<3.0.a0
|
| 1873 |
+
license: Apache-2.0
|
| 1874 |
+
license_family: APACHE
|
| 1875 |
+
purls: []
|
| 1876 |
+
size: 186326
|
| 1877 |
+
timestamp: 1752218296032
|
| 1878 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/nsight-compute-2025.1.1.2-hb5ebaad_1.conda
|
| 1879 |
+
sha256: 6e887bc56ee7a658f1ffefa9877b4adcc9f51b8894e1cd13c6de8b304809a7a7
|
| 1880 |
+
md5: 9d7247e32f652f7764e1579c93a86b2a
|
| 1881 |
+
depends:
|
| 1882 |
+
- __glibc >=2.17,<3.0.a0
|
| 1883 |
+
- alsa-lib >=1.2.13,<1.3.0a0
|
| 1884 |
+
- cuda-version >=12.8,<12.9.0a0
|
| 1885 |
+
- dbus >=1.13.6,<2.0a0
|
| 1886 |
+
- fontconfig >=2.15.0,<3.0a0
|
| 1887 |
+
- fonts-conda-ecosystem
|
| 1888 |
+
- freetype >=2.13.3,<3.0a0
|
| 1889 |
+
- krb5 >=1.21.3,<1.22.0a0
|
| 1890 |
+
- libexpat >=2.7.0,<3.0a0
|
| 1891 |
+
- libgcc >=13
|
| 1892 |
+
- libglib >=2.84.0,<3.0a0
|
| 1893 |
+
- libglvnd >=1.7.0,<2.0a0
|
| 1894 |
+
- libopengl >=1.7.0,<2.0a0
|
| 1895 |
+
- libstdcxx >=13
|
| 1896 |
+
- libxcb >=1.17.0,<2.0a0
|
| 1897 |
+
- libxkbcommon >=1.8.1,<2.0a0
|
| 1898 |
+
- libxkbfile >=1.1.0,<1.2.0a0
|
| 1899 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1900 |
+
- nspr >=4.36,<5.0a0
|
| 1901 |
+
- nss >=3.110,<4.0a0
|
| 1902 |
+
- wayland >=1.23.1,<2.0a0
|
| 1903 |
+
- xcb-util-cursor >=0.1.5,<0.2.0a0
|
| 1904 |
+
- xcb-util-image >=0.4.0,<0.5.0a0
|
| 1905 |
+
- xcb-util-keysyms >=0.4.1,<0.5.0a0
|
| 1906 |
+
- xcb-util-renderutil >=0.3.10,<0.4.0a0
|
| 1907 |
+
- xcb-util-wm >=0.4.2,<0.5.0a0
|
| 1908 |
+
- xorg-libice >=1.1.2,<2.0a0
|
| 1909 |
+
- xorg-libsm >=1.2.6,<2.0a0
|
| 1910 |
+
- xorg-libx11 >=1.8.12,<2.0a0
|
| 1911 |
+
- xorg-libxcomposite >=0.4.6,<0.5.0a0
|
| 1912 |
+
- xorg-libxcomposite >=0.4.6,<1.0a0
|
| 1913 |
+
- xorg-libxdamage >=1.1.6,<1.2.0a0
|
| 1914 |
+
- xorg-libxdamage >=1.1.6,<2.0a0
|
| 1915 |
+
- xorg-libxext >=1.3.6,<2.0a0
|
| 1916 |
+
- xorg-libxfixes >=6.0.1,<6.1.0a0
|
| 1917 |
+
- xorg-libxfixes >=6.0.1,<7.0a0
|
| 1918 |
+
- xorg-libxrandr >=1.5.4,<1.6.0a0
|
| 1919 |
+
- xorg-libxrandr >=1.5.4,<2.0a0
|
| 1920 |
+
- xorg-libxrender >=0.9.12,<0.10.0a0
|
| 1921 |
+
- xorg-libxtst >=1.2.5,<1.3.0a0
|
| 1922 |
+
- xorg-libxtst >=1.2.5,<2.0a0
|
| 1923 |
+
license: LicenseRef-NVIDIA-End-User-License-Agreement
|
| 1924 |
+
purls: []
|
| 1925 |
+
size: 336189366
|
| 1926 |
+
timestamp: 1743627515736
|
| 1927 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.37-h29cc59b_0.conda
|
| 1928 |
+
sha256: 472306630dcd49a221863b91bd89f5b8b81daf1b99adf1968c9f12021176d873
|
| 1929 |
+
md5: d73ccc379297a67ed921bd55b38a6c6a
|
| 1930 |
+
depends:
|
| 1931 |
+
- __glibc >=2.17,<3.0.a0
|
| 1932 |
+
- libgcc >=14
|
| 1933 |
+
- libstdcxx >=14
|
| 1934 |
+
license: MPL-2.0
|
| 1935 |
+
license_family: MOZILLA
|
| 1936 |
+
purls: []
|
| 1937 |
+
size: 230951
|
| 1938 |
+
timestamp: 1752841107697
|
| 1939 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/nss-3.117-h445c969_0.conda
|
| 1940 |
+
sha256: 85f2d6d93199454818866b355834a8c5dc64a87e14da3b242208c9dc2156852a
|
| 1941 |
+
md5: 970af0bfac9644ddbf7e91c1336b231b
|
| 1942 |
+
depends:
|
| 1943 |
+
- __glibc >=2.17,<3.0.a0
|
| 1944 |
+
- libgcc >=14
|
| 1945 |
+
- libsqlite >=3.50.4,<4.0a0
|
| 1946 |
+
- libstdcxx >=14
|
| 1947 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1948 |
+
- nspr >=4.37,<5.0a0
|
| 1949 |
+
license: MPL-2.0
|
| 1950 |
+
license_family: MOZILLA
|
| 1951 |
+
purls: []
|
| 1952 |
+
size: 2045760
|
| 1953 |
+
timestamp: 1759509411326
|
| 1954 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda
|
| 1955 |
+
sha256: 2254dae821b286fb57c61895f2b40e3571a070910fdab79a948ff703e1ea807b
|
| 1956 |
+
md5: 56f8947aa9d5cf37b0b3d43b83f34192
|
| 1957 |
+
depends:
|
| 1958 |
+
- __glibc >=2.17,<3.0.a0
|
| 1959 |
+
- libgcc >=13
|
| 1960 |
+
- opencl-headers >=2024.10.24
|
| 1961 |
+
license: BSD-2-Clause
|
| 1962 |
+
license_family: BSD
|
| 1963 |
+
purls: []
|
| 1964 |
+
size: 106742
|
| 1965 |
+
timestamp: 1743700382939
|
| 1966 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda
|
| 1967 |
+
sha256: 2b6ce54174ec19110e1b3c37455f7cd138d0e228a75727a9bba443427da30a36
|
| 1968 |
+
md5: 45c3d2c224002d6d0d7769142b29f986
|
| 1969 |
+
depends:
|
| 1970 |
+
- __glibc >=2.17,<3.0.a0
|
| 1971 |
+
- libgcc >=13
|
| 1972 |
+
- libstdcxx >=13
|
| 1973 |
+
license: Apache-2.0
|
| 1974 |
+
license_family: APACHE
|
| 1975 |
+
purls: []
|
| 1976 |
+
size: 55357
|
| 1977 |
+
timestamp: 1749853464518
|
| 1978 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda
|
| 1979 |
+
sha256: e807f3bad09bdf4075dbb4168619e14b0c0360bacb2e12ef18641a834c8c5549
|
| 1980 |
+
md5: 14edad12b59ccbfa3910d42c72adc2a0
|
| 1981 |
+
depends:
|
| 1982 |
+
- __glibc >=2.17,<3.0.a0
|
| 1983 |
+
- ca-certificates
|
| 1984 |
+
- libgcc >=14
|
| 1985 |
+
license: Apache-2.0
|
| 1986 |
+
license_family: Apache
|
| 1987 |
+
purls: []
|
| 1988 |
+
size: 3119624
|
| 1989 |
+
timestamp: 1759324353651
|
| 1990 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.46-h1321c63_0.conda
|
| 1991 |
+
sha256: 5c7380c8fd3ad5fc0f8039069a45586aa452cf165264bc5a437ad80397b32934
|
| 1992 |
+
md5: 7fa07cb0fb1b625a089ccc01218ee5b1
|
| 1993 |
+
depends:
|
| 1994 |
+
- __glibc >=2.17,<3.0.a0
|
| 1995 |
+
- bzip2 >=1.0.8,<2.0a0
|
| 1996 |
+
- libgcc >=14
|
| 1997 |
+
- libzlib >=1.3.1,<2.0a0
|
| 1998 |
+
license: BSD-3-Clause
|
| 1999 |
+
license_family: BSD
|
| 2000 |
+
purls: []
|
| 2001 |
+
size: 1209177
|
| 2002 |
+
timestamp: 1756742976157
|
| 2003 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
|
| 2004 |
+
sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973
|
| 2005 |
+
md5: b3c17d95b5a10c6e64a21fa17573e70e
|
| 2006 |
+
depends:
|
| 2007 |
+
- __glibc >=2.17,<3.0.a0
|
| 2008 |
+
- libgcc >=13
|
| 2009 |
+
license: MIT
|
| 2010 |
+
license_family: MIT
|
| 2011 |
+
purls: []
|
| 2012 |
+
size: 8252
|
| 2013 |
+
timestamp: 1726802366959
|
| 2014 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.12-hfe2f287_0_cpython.conda
|
| 2015 |
+
sha256: 5386d8c8230b6478ae165ff34f57d498891ac160e871629cbb4d4256e69cc542
|
| 2016 |
+
md5: ceada987beec823b3c702710ee073fba
|
| 2017 |
+
depends:
|
| 2018 |
+
- __glibc >=2.17,<3.0.a0
|
| 2019 |
+
- bzip2 >=1.0.8,<2.0a0
|
| 2020 |
+
- ld_impl_linux-64 >=2.36.1
|
| 2021 |
+
- libexpat >=2.7.1,<3.0a0
|
| 2022 |
+
- libffi >=3.4.6,<3.5.0a0
|
| 2023 |
+
- libgcc >=14
|
| 2024 |
+
- liblzma >=5.8.1,<6.0a0
|
| 2025 |
+
- libnsl >=2.0.1,<2.1.0a0
|
| 2026 |
+
- libsqlite >=3.50.4,<4.0a0
|
| 2027 |
+
- libuuid >=2.41.2,<3.0a0
|
| 2028 |
+
- libxcrypt >=4.4.36
|
| 2029 |
+
- libzlib >=1.3.1,<2.0a0
|
| 2030 |
+
- ncurses >=6.5,<7.0a0
|
| 2031 |
+
- openssl >=3.5.4,<4.0a0
|
| 2032 |
+
- readline >=8.2,<9.0a0
|
| 2033 |
+
- tk >=8.6.13,<8.7.0a0
|
| 2034 |
+
- tzdata
|
| 2035 |
+
constrains:
|
| 2036 |
+
- python_abi 3.12.* *_cp312
|
| 2037 |
+
license: Python-2.0
|
| 2038 |
+
purls: []
|
| 2039 |
+
size: 31547362
|
| 2040 |
+
timestamp: 1760367376467
|
| 2041 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-59.0-hecca717_0.conda
|
| 2042 |
+
sha256: ce0e671ce8b6151b135eb6b5aea9caed4d4032a416f73a04a3fb29048fd772c3
|
| 2043 |
+
md5: d95e4c5679876a9d3f2211263f75dc9c
|
| 2044 |
+
depends:
|
| 2045 |
+
- __glibc >=2.17,<3.0.a0
|
| 2046 |
+
- libgcc >=14
|
| 2047 |
+
- libnl >=3.11.0,<4.0a0
|
| 2048 |
+
- libstdcxx >=14
|
| 2049 |
+
- libsystemd0 >=257.7
|
| 2050 |
+
- libudev1 >=257.7
|
| 2051 |
+
license: Linux-OpenIB
|
| 2052 |
+
license_family: BSD
|
| 2053 |
+
purls: []
|
| 2054 |
+
size: 1239342
|
| 2055 |
+
timestamp: 1756455670262
|
| 2056 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
|
| 2057 |
+
sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c
|
| 2058 |
+
md5: 283b96675859b20a825f8fa30f311446
|
| 2059 |
+
depends:
|
| 2060 |
+
- libgcc >=13
|
| 2061 |
+
- ncurses >=6.5,<7.0a0
|
| 2062 |
+
license: GPL-3.0-only
|
| 2063 |
+
license_family: GPL
|
| 2064 |
+
purls: []
|
| 2065 |
+
size: 282480
|
| 2066 |
+
timestamp: 1740379431762
|
| 2067 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_8.conda
|
| 2068 |
+
sha256: 0053c17ffbd9f8af1a7f864995d70121c292e317804120be4667f37c92805426
|
| 2069 |
+
md5: 1bad93f0aa428d618875ef3a588a889e
|
| 2070 |
+
depends:
|
| 2071 |
+
- __glibc >=2.28
|
| 2072 |
+
- kernel-headers_linux-64 4.18.0 he073ed8_8
|
| 2073 |
+
- tzdata
|
| 2074 |
+
license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
|
| 2075 |
+
license_family: GPL
|
| 2076 |
+
purls: []
|
| 2077 |
+
size: 24210909
|
| 2078 |
+
timestamp: 1752669140965
|
| 2079 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
|
| 2080 |
+
sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1
|
| 2081 |
+
md5: a0116df4f4ed05c303811a837d5b39d8
|
| 2082 |
+
depends:
|
| 2083 |
+
- __glibc >=2.17,<3.0.a0
|
| 2084 |
+
- libgcc >=13
|
| 2085 |
+
- libzlib >=1.3.1,<2.0a0
|
| 2086 |
+
license: TCL
|
| 2087 |
+
license_family: BSD
|
| 2088 |
+
purls: []
|
| 2089 |
+
size: 3285204
|
| 2090 |
+
timestamp: 1748387766691
|
| 2091 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
| 2092 |
+
sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192
|
| 2093 |
+
md5: 4222072737ccff51314b5ece9c7d6f5a
|
| 2094 |
+
license: LicenseRef-Public-Domain
|
| 2095 |
+
purls: []
|
| 2096 |
+
size: 122968
|
| 2097 |
+
timestamp: 1742727099393
|
| 2098 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/uv-0.9.4-h30787bc_0.conda
|
| 2099 |
+
sha256: 8cb05fe6759056c41ebd03cf3c10621050d904f6c28b9f0a2ab2830198ee9e48
|
| 2100 |
+
md5: 7bdc894d966a30e96371a639265c08dd
|
| 2101 |
+
depends:
|
| 2102 |
+
- __glibc >=2.17,<3.0.a0
|
| 2103 |
+
- libgcc >=14
|
| 2104 |
+
- libstdcxx >=14
|
| 2105 |
+
- libgcc >=14
|
| 2106 |
+
constrains:
|
| 2107 |
+
- __glibc >=2.17
|
| 2108 |
+
license: Apache-2.0 OR MIT
|
| 2109 |
+
size: 17099675
|
| 2110 |
+
timestamp: 1760837874956
|
| 2111 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.24.0-h3e06ad9_0.conda
|
| 2112 |
+
sha256: ba673427dcd480cfa9bbc262fd04a9b1ad2ed59a159bd8f7e750d4c52282f34c
|
| 2113 |
+
md5: 0f2ca7906bf166247d1d760c3422cb8a
|
| 2114 |
+
depends:
|
| 2115 |
+
- __glibc >=2.17,<3.0.a0
|
| 2116 |
+
- libexpat >=2.7.0,<3.0a0
|
| 2117 |
+
- libffi >=3.4.6,<3.5.0a0
|
| 2118 |
+
- libgcc >=13
|
| 2119 |
+
- libstdcxx >=13
|
| 2120 |
+
license: MIT
|
| 2121 |
+
license_family: MIT
|
| 2122 |
+
purls: []
|
| 2123 |
+
size: 330474
|
| 2124 |
+
timestamp: 1751817998141
|
| 2125 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda
|
| 2126 |
+
sha256: ad8cab7e07e2af268449c2ce855cbb51f43f4664936eff679b1f3862e6e4b01d
|
| 2127 |
+
md5: fdc27cb255a7a2cc73b7919a968b48f0
|
| 2128 |
+
depends:
|
| 2129 |
+
- __glibc >=2.17,<3.0.a0
|
| 2130 |
+
- libgcc >=13
|
| 2131 |
+
- libxcb >=1.17.0,<2.0a0
|
| 2132 |
+
license: MIT
|
| 2133 |
+
license_family: MIT
|
| 2134 |
+
purls: []
|
| 2135 |
+
size: 20772
|
| 2136 |
+
timestamp: 1750436796633
|
| 2137 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
|
| 2138 |
+
sha256: c7b35db96f6e32a9e5346f97adc968ef2f33948e3d7084295baebc0e33abdd5b
|
| 2139 |
+
md5: eb44b3b6deb1cab08d72cb61686fe64c
|
| 2140 |
+
depends:
|
| 2141 |
+
- __glibc >=2.17,<3.0.a0
|
| 2142 |
+
- libgcc >=13
|
| 2143 |
+
- libxcb >=1.13
|
| 2144 |
+
- libxcb >=1.16,<2.0.0a0
|
| 2145 |
+
- xcb-util-image >=0.4.0,<0.5.0a0
|
| 2146 |
+
- xcb-util-renderutil >=0.3.10,<0.4.0a0
|
| 2147 |
+
license: MIT
|
| 2148 |
+
license_family: MIT
|
| 2149 |
+
purls: []
|
| 2150 |
+
size: 20296
|
| 2151 |
+
timestamp: 1726125844850
|
| 2152 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
|
| 2153 |
+
sha256: 94b12ff8b30260d9de4fd7a28cca12e028e572cbc504fd42aa2646ec4a5bded7
|
| 2154 |
+
md5: a0901183f08b6c7107aab109733a3c91
|
| 2155 |
+
depends:
|
| 2156 |
+
- libgcc-ng >=12
|
| 2157 |
+
- libxcb >=1.16,<2.0.0a0
|
| 2158 |
+
- xcb-util >=0.4.1,<0.5.0a0
|
| 2159 |
+
license: MIT
|
| 2160 |
+
license_family: MIT
|
| 2161 |
+
purls: []
|
| 2162 |
+
size: 24551
|
| 2163 |
+
timestamp: 1718880534789
|
| 2164 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
|
| 2165 |
+
sha256: 546e3ee01e95a4c884b6401284bb22da449a2f4daf508d038fdfa0712fe4cc69
|
| 2166 |
+
md5: ad748ccca349aec3e91743e08b5e2b50
|
| 2167 |
+
depends:
|
| 2168 |
+
- libgcc-ng >=12
|
| 2169 |
+
- libxcb >=1.16,<2.0.0a0
|
| 2170 |
+
license: MIT
|
| 2171 |
+
license_family: MIT
|
| 2172 |
+
purls: []
|
| 2173 |
+
size: 14314
|
| 2174 |
+
timestamp: 1718846569232
|
| 2175 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
|
| 2176 |
+
sha256: 2d401dadc43855971ce008344a4b5bd804aca9487d8ebd83328592217daca3df
|
| 2177 |
+
md5: 0e0cbe0564d03a99afd5fd7b362feecd
|
| 2178 |
+
depends:
|
| 2179 |
+
- libgcc-ng >=12
|
| 2180 |
+
- libxcb >=1.16,<2.0.0a0
|
| 2181 |
+
license: MIT
|
| 2182 |
+
license_family: MIT
|
| 2183 |
+
purls: []
|
| 2184 |
+
size: 16978
|
| 2185 |
+
timestamp: 1718848865819
|
| 2186 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
|
| 2187 |
+
sha256: 31d44f297ad87a1e6510895740325a635dd204556aa7e079194a0034cdd7e66a
|
| 2188 |
+
md5: 608e0ef8256b81d04456e8d211eee3e8
|
| 2189 |
+
depends:
|
| 2190 |
+
- libgcc-ng >=12
|
| 2191 |
+
- libxcb >=1.16,<2.0.0a0
|
| 2192 |
+
license: MIT
|
| 2193 |
+
license_family: MIT
|
| 2194 |
+
purls: []
|
| 2195 |
+
size: 51689
|
| 2196 |
+
timestamp: 1718844051451
|
| 2197 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.46-hb03c661_0.conda
|
| 2198 |
+
sha256: aa03b49f402959751ccc6e21932d69db96a65a67343765672f7862332aa32834
|
| 2199 |
+
md5: 71ae752a748962161b4740eaff510258
|
| 2200 |
+
depends:
|
| 2201 |
+
- __glibc >=2.17,<3.0.a0
|
| 2202 |
+
- libgcc >=14
|
| 2203 |
+
- xorg-libx11 >=1.8.12,<2.0a0
|
| 2204 |
+
license: MIT
|
| 2205 |
+
license_family: MIT
|
| 2206 |
+
purls: []
|
| 2207 |
+
size: 396975
|
| 2208 |
+
timestamp: 1759543819846
|
| 2209 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
|
| 2210 |
+
sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b
|
| 2211 |
+
md5: fb901ff28063514abb6046c9ec2c4a45
|
| 2212 |
+
depends:
|
| 2213 |
+
- __glibc >=2.17,<3.0.a0
|
| 2214 |
+
- libgcc >=13
|
| 2215 |
+
license: MIT
|
| 2216 |
+
license_family: MIT
|
| 2217 |
+
purls: []
|
| 2218 |
+
size: 58628
|
| 2219 |
+
timestamp: 1734227592886
|
| 2220 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
|
| 2221 |
+
sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250
|
| 2222 |
+
md5: 1c74ff8c35dcadf952a16f752ca5aa49
|
| 2223 |
+
depends:
|
| 2224 |
+
- __glibc >=2.17,<3.0.a0
|
| 2225 |
+
- libgcc >=13
|
| 2226 |
+
- libuuid >=2.38.1,<3.0a0
|
| 2227 |
+
- xorg-libice >=1.1.2,<2.0a0
|
| 2228 |
+
license: MIT
|
| 2229 |
+
license_family: MIT
|
| 2230 |
+
purls: []
|
| 2231 |
+
size: 27590
|
| 2232 |
+
timestamp: 1741896361728
|
| 2233 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
|
| 2234 |
+
sha256: 51909270b1a6c5474ed3978628b341b4d4472cd22610e5f22b506855a5e20f67
|
| 2235 |
+
md5: db038ce880f100acc74dba10302b5630
|
| 2236 |
+
depends:
|
| 2237 |
+
- __glibc >=2.17,<3.0.a0
|
| 2238 |
+
- libgcc >=13
|
| 2239 |
+
- libxcb >=1.17.0,<2.0a0
|
| 2240 |
+
license: MIT
|
| 2241 |
+
license_family: MIT
|
| 2242 |
+
purls: []
|
| 2243 |
+
size: 835896
|
| 2244 |
+
timestamp: 1741901112627
|
| 2245 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
|
| 2246 |
+
sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038
|
| 2247 |
+
md5: f6ebe2cb3f82ba6c057dde5d9debe4f7
|
| 2248 |
+
depends:
|
| 2249 |
+
- __glibc >=2.17,<3.0.a0
|
| 2250 |
+
- libgcc >=13
|
| 2251 |
+
license: MIT
|
| 2252 |
+
license_family: MIT
|
| 2253 |
+
purls: []
|
| 2254 |
+
size: 14780
|
| 2255 |
+
timestamp: 1734229004433
|
| 2256 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
|
| 2257 |
+
sha256: 753f73e990c33366a91fd42cc17a3d19bb9444b9ca5ff983605fa9e953baf57f
|
| 2258 |
+
md5: d3c295b50f092ab525ffe3c2aa4b7413
|
| 2259 |
+
depends:
|
| 2260 |
+
- __glibc >=2.17,<3.0.a0
|
| 2261 |
+
- libgcc >=13
|
| 2262 |
+
- xorg-libx11 >=1.8.10,<2.0a0
|
| 2263 |
+
- xorg-libxfixes >=6.0.1,<7.0a0
|
| 2264 |
+
license: MIT
|
| 2265 |
+
license_family: MIT
|
| 2266 |
+
purls: []
|
| 2267 |
+
size: 13603
|
| 2268 |
+
timestamp: 1727884600744
|
| 2269 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
|
| 2270 |
+
sha256: 43b9772fd6582bf401846642c4635c47a9b0e36ca08116b3ec3df36ab96e0ec0
|
| 2271 |
+
md5: b5fcc7172d22516e1f965490e65e33a4
|
| 2272 |
+
depends:
|
| 2273 |
+
- __glibc >=2.17,<3.0.a0
|
| 2274 |
+
- libgcc >=13
|
| 2275 |
+
- xorg-libx11 >=1.8.10,<2.0a0
|
| 2276 |
+
- xorg-libxext >=1.3.6,<2.0a0
|
| 2277 |
+
- xorg-libxfixes >=6.0.1,<7.0a0
|
| 2278 |
+
license: MIT
|
| 2279 |
+
license_family: MIT
|
| 2280 |
+
purls: []
|
| 2281 |
+
size: 13217
|
| 2282 |
+
timestamp: 1727891438799
|
| 2283 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
|
| 2284 |
+
sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee
|
| 2285 |
+
md5: 8035c64cb77ed555e3f150b7b3972480
|
| 2286 |
+
depends:
|
| 2287 |
+
- __glibc >=2.17,<3.0.a0
|
| 2288 |
+
- libgcc >=13
|
| 2289 |
+
license: MIT
|
| 2290 |
+
license_family: MIT
|
| 2291 |
+
purls: []
|
| 2292 |
+
size: 19901
|
| 2293 |
+
timestamp: 1727794976192
|
| 2294 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
|
| 2295 |
+
sha256: da5dc921c017c05f38a38bd75245017463104457b63a1ce633ed41f214159c14
|
| 2296 |
+
md5: febbab7d15033c913d53c7a2c102309d
|
| 2297 |
+
depends:
|
| 2298 |
+
- __glibc >=2.17,<3.0.a0
|
| 2299 |
+
- libgcc >=13
|
| 2300 |
+
- xorg-libx11 >=1.8.10,<2.0a0
|
| 2301 |
+
license: MIT
|
| 2302 |
+
license_family: MIT
|
| 2303 |
+
purls: []
|
| 2304 |
+
size: 50060
|
| 2305 |
+
timestamp: 1727752228921
|
| 2306 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.2-hb03c661_0.conda
|
| 2307 |
+
sha256: 83c4c99d60b8784a611351220452a0a85b080668188dce5dfa394b723d7b64f4
|
| 2308 |
+
md5: ba231da7fccf9ea1e768caf5c7099b84
|
| 2309 |
+
depends:
|
| 2310 |
+
- __glibc >=2.17,<3.0.a0
|
| 2311 |
+
- libgcc >=14
|
| 2312 |
+
- xorg-libx11 >=1.8.12,<2.0a0
|
| 2313 |
+
license: MIT
|
| 2314 |
+
license_family: MIT
|
| 2315 |
+
purls: []
|
| 2316 |
+
size: 20071
|
| 2317 |
+
timestamp: 1759282564045
|
| 2318 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
|
| 2319 |
+
sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a
|
| 2320 |
+
md5: 17dcc85db3c7886650b8908b183d6876
|
| 2321 |
+
depends:
|
| 2322 |
+
- __glibc >=2.17,<3.0.a0
|
| 2323 |
+
- libgcc >=13
|
| 2324 |
+
- xorg-libx11 >=1.8.10,<2.0a0
|
| 2325 |
+
- xorg-libxext >=1.3.6,<2.0a0
|
| 2326 |
+
- xorg-libxfixes >=6.0.1,<7.0a0
|
| 2327 |
+
license: MIT
|
| 2328 |
+
license_family: MIT
|
| 2329 |
+
purls: []
|
| 2330 |
+
size: 47179
|
| 2331 |
+
timestamp: 1727799254088
|
| 2332 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
|
| 2333 |
+
sha256: ac0f037e0791a620a69980914a77cb6bb40308e26db11698029d6708f5aa8e0d
|
| 2334 |
+
md5: 2de7f99d6581a4a7adbff607b5c278ca
|
| 2335 |
+
depends:
|
| 2336 |
+
- __glibc >=2.17,<3.0.a0
|
| 2337 |
+
- libgcc >=13
|
| 2338 |
+
- xorg-libx11 >=1.8.10,<2.0a0
|
| 2339 |
+
- xorg-libxext >=1.3.6,<2.0a0
|
| 2340 |
+
- xorg-libxrender >=0.9.11,<0.10.0a0
|
| 2341 |
+
license: MIT
|
| 2342 |
+
license_family: MIT
|
| 2343 |
+
purls: []
|
| 2344 |
+
size: 29599
|
| 2345 |
+
timestamp: 1727794874300
|
| 2346 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
|
| 2347 |
+
sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1
|
| 2348 |
+
md5: 96d57aba173e878a2089d5638016dc5e
|
| 2349 |
+
depends:
|
| 2350 |
+
- __glibc >=2.17,<3.0.a0
|
| 2351 |
+
- libgcc >=13
|
| 2352 |
+
- xorg-libx11 >=1.8.10,<2.0a0
|
| 2353 |
+
license: MIT
|
| 2354 |
+
license_family: MIT
|
| 2355 |
+
purls: []
|
| 2356 |
+
size: 33005
|
| 2357 |
+
timestamp: 1734229037766
|
| 2358 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
|
| 2359 |
+
sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a
|
| 2360 |
+
md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f
|
| 2361 |
+
depends:
|
| 2362 |
+
- __glibc >=2.17,<3.0.a0
|
| 2363 |
+
- libgcc >=13
|
| 2364 |
+
- xorg-libx11 >=1.8.10,<2.0a0
|
| 2365 |
+
- xorg-libxext >=1.3.6,<2.0a0
|
| 2366 |
+
- xorg-libxi >=1.7.10,<2.0a0
|
| 2367 |
+
license: MIT
|
| 2368 |
+
license_family: MIT
|
| 2369 |
+
purls: []
|
| 2370 |
+
size: 32808
|
| 2371 |
+
timestamp: 1727964811275
|
| 2372 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
|
| 2373 |
+
sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb
|
| 2374 |
+
md5: 6432cb5d4ac0046c3ac0a8a0f95842f9
|
| 2375 |
+
depends:
|
| 2376 |
+
- __glibc >=2.17,<3.0.a0
|
| 2377 |
+
- libgcc >=13
|
| 2378 |
+
- libstdcxx >=13
|
| 2379 |
+
- libzlib >=1.3.1,<2.0a0
|
| 2380 |
+
license: BSD-3-Clause
|
| 2381 |
+
license_family: BSD
|
| 2382 |
+
purls: []
|
| 2383 |
+
size: 567578
|
| 2384 |
+
timestamp: 1742433379869
|
quickstart.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Contributing
|
| 2 |
+
|
| 3 |
+
## Installation
|
| 4 |
+
|
| 5 |
+
Install [pixi](https://pixi.sh/latest/) for pulling conda/pip packages:
|
| 6 |
+
|
| 7 |
+
```bash
|
| 8 |
+
curl -fsSL https://pixi.sh/install.sh | sh
|
| 9 |
+
```
|
| 10 |
+
|
| 11 |
+
Create pixi environment and enter activated shell:
|
| 12 |
+
|
| 13 |
+
```bash
|
| 14 |
+
pixi s
|
| 15 |
+
```
|
| 16 |
+
|
| 17 |
+
Create a virtualenv and install nemo-retriever-ocr into it via `uv`:
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
uv venv \
|
| 21 |
+
&& uv pip install -e ./nemo-retriever-ocr -v
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
Assert that OCR inference libraries can now be imported successfully:
|
| 25 |
+
|
| 26 |
+
```bash
|
| 27 |
+
uv run python -c "import nemo_retriever_ocr; import nemo_retriever_ocr_cpp"
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
|
| 32 |
+
`nemo_retriever_ocr.inference.pipeline.NemoRetrieverOCR` is the main entry point for performing OCR inference; it can be used to iterate over predictions for a given input image:
|
| 33 |
+
|
| 34 |
+
```python
|
| 35 |
+
from nemo_retriever_ocr.inference.pipeline import NemoRetrieverOCR
|
| 36 |
+
|
| 37 |
+
ocr = NemoRetrieverOCR()
|
| 38 |
+
|
| 39 |
+
predictions = ocr("ocr-example-input-1.png")
|
| 40 |
+
|
| 41 |
+
for pred in predictions:
|
| 42 |
+
print(
|
| 43 |
+
f" - Text: '{pred['text']}', "
|
| 44 |
+
f"Confidence: {pred['confidence']:.2f}, "
|
| 45 |
+
f"Bbox: [left={pred['left']:.4f}, upper={pred['upper']:.4f}, right={pred['right']:.4f}, lower={pred['lower']:.4f}]"
|
| 46 |
+
)
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
Or predictions can be superimposed on the input image for visualization:
|
| 50 |
+
|
| 51 |
+
```python
|
| 52 |
+
ocr(image_path, visualize=True)
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
The level of detection merging can be adjusted by modifying the `merge_level` argument (defaulting to "paragraph"):
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
ocr(image_path, merge_level="word") # leave detected words unmerged
|
| 59 |
+
ocr(image_path, merge_level="sentence") # merge detected words into sentences
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
An example script `example.py` is provided for convenience:
|
| 63 |
+
|
| 64 |
+
```bash
|
| 65 |
+
uv run python example.py ocr-example-input-1.png
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
Detection merging can be adjusted by modifying the `--merge-level` option:
|
| 69 |
+
|
| 70 |
+
```bash
|
| 71 |
+
uv run python example.py ocr-example-input-1.png --merge-level word
|
| 72 |
+
uv run python example.py ocr-example-input-1.png --merge-level sentence
|
| 73 |
+
```
|