mirror of
https://github.com/saymrwulf/transformers.git
synced 2026-05-14 20:58:08 +00:00
* Add setup for TPU CI to run every hour. * Re-organize config.yml Co-authored-by: Lysandre <lysandre.debut@reseau.eseo.fr>
8 lines
247 B
Bash
8 lines
247 B
Bash
#!/bin/bash
|
|
source ~/.bashrc
|
|
echo "running docker-entrypoint.sh"
|
|
conda activate container
|
|
echo $KUBE_GOOGLE_CLOUD_TPU_ENDPOINTS
|
|
echo "printed TPU info"
|
|
export XRT_TPU_CONFIG="tpu_worker;0;${KUBE_GOOGLE_CLOUD_TPU_ENDPOINTS:7}"
|
|
exec "$@"#!/bin/bash
|