chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:35:51 +08:00
commit c36a561cd8
2172 changed files with 455595 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
## Build docker image for CI
### CPU image
```bash
docker build -t dgl-cpu -f Dockerfile.ci_cpu .
```
### GPU image
```bash
docker build -t dgl-gpu -f Dockerfile.ci_gpu .
```
### Lint image
```bash
docker build -t dgl-lint -f Dockerfile.ci_lint .
```
### CPU image for kg
```bash
wget https://data.dgl.ai/dataset/FB15k.zip -P install/
docker build -t dgl-cpu:torch-1.2.0 -f Dockerfile.ci_cpu_torch_1.2.0 .
```
### GPU image for kg
```bash
wget https://data.dgl.ai/dataset/FB15k.zip -P install/
docker build -t dgl-gpu:torch-1.2.0 -f Dockerfile.ci_gpu_torch_1.2.0 .
```