-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add * fix * set default * fix * try master * try fix * try * fix * 111 * fix * fix * update * ccc * try * fix * fix * try new machine * fix * fix * fix * Revert "fix" This reverts commit e716d66. * try * more parrallel * use k8s for all * fix name * try not specify instance type * ci * use one yaml * Revert "use one yaml" This reverts commit 717d8d8. * add timeout * fix permission * mount efs * print * fix pvc * fix * restrict num of gpu instances * check * fix * fix
- Loading branch information
Showing
7 changed files
with
159 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
spec: | ||
securityContext: | ||
runAsUser: 0 | ||
containers: | ||
- name: dgl-ci-cpu-compile | ||
image: dgllib/dgl-ci-cpu:conda | ||
imagePullPolicy: Always | ||
tty: true | ||
resources: | ||
requests: | ||
cpu: 16 | ||
# affinity: | ||
# nodeAffinity: | ||
# requiredDuringSchedulingIgnoredDuringExecution: | ||
# nodeSelectorTerms: | ||
# - matchExpressions: | ||
# - key: beta.kubernetes.io/instance-type | ||
# operator: In | ||
# values: | ||
# - c5.9xlarge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
spec: | ||
securityContext: | ||
runAsUser: 0 | ||
containers: | ||
- name: dgl-ci-gpu-compile | ||
image: dgllib/dgl-ci-gpu:conda | ||
imagePullPolicy: Always | ||
tty: true | ||
resources: | ||
requests: | ||
cpu: 32 | ||
# affinity: | ||
# nodeAffinity: | ||
# requiredDuringSchedulingIgnoredDuringExecution: | ||
# nodeSelectorTerms: | ||
# - matchExpressions: | ||
# - key: beta.kubernetes.io/instance-type | ||
# operator: In | ||
# values: | ||
# - c5.9xlarge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
spec: | ||
securityContext: | ||
runAsUser: 0 | ||
containers: | ||
- name: dgl-ci-cpu | ||
image: dgllib/dgl-ci-cpu:conda | ||
imagePullPolicy: Always | ||
tty: true | ||
resources: | ||
requests: | ||
cpu: 8 | ||
volumeMounts: | ||
- name: persistent-storage | ||
mountPath: /tmp/dataset | ||
volumes: | ||
- name: persistent-storage | ||
persistentVolumeClaim: | ||
claimName: ogb-efs-claim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
spec: | ||
securityContext: | ||
runAsUser: 0 | ||
containers: | ||
- name: dgl-ci-gpu | ||
image: dgllib/dgl-ci-gpu:conda | ||
imagePullPolicy: Always | ||
tty: true | ||
resources: | ||
limits: | ||
nvidia.com/gpu: 1 # requesting 1 GPU | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: beta.kubernetes.io/instance-type | ||
operator: In | ||
values: | ||
- g4dn.2xlarge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
spec: | ||
securityContext: | ||
runAsUser: 0 | ||
containers: | ||
- name: dgl-ci-lint | ||
image: dgllib/dgl-ci-lint | ||
imagePullPolicy: Always | ||
tty: true | ||
resources: | ||
requests: | ||
cpu: 4 | ||
serviceAccountName: dglciuser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ rm -rf _download | |
|
||
pushd build | ||
cmake $CMAKE_VARS .. | ||
make -j8 | ||
make -j | ||
popd | ||
|
||
pushd python | ||
|