mirror of https://github.com/llvm/torch-mlir
13 lines
249 B
Bash
13 lines
249 B
Bash
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
src_dir="$(realpath $(dirname $0)/..)"
|
||
|
|
||
|
cd "$src_dir"
|
||
|
|
||
|
# Ensure PYTHONPATH is set for export to child processes, even if empty.
|
||
|
export PYTHONPATH=${PYTHONPATH-}
|
||
|
source .env
|
||
|
|
||
|
python -m e2e_testing.torchscript.main "$@"
|