Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lang] Stop broadcasting scalar cond in select statements #7344

Merged
merged 8 commits into from
Feb 15, 2023
1 change: 1 addition & 0 deletions .github/workflows/scripts/unix-test-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ python3 -m pip install dist/*.whl

export PATH=$PATH:$HOME/.local/bin
python3 -m pip install -r requirements_test.txt
python3 -m pip install torch

cat docs/cover-in-ci.lst | xargs pytest -v -n 4
2 changes: 1 addition & 1 deletion .github/workflows/scripts/unix_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ "$TI_RUN_RELEASE_TESTS" == "1" ]; then
python3 -m pip install PyYAML
git clone https://github.com/taichi-dev/taichi-release-tests
pushd taichi-release-tests
git checkout 20221230
git checkout 20230130
mkdir -p repos/taichi/python/taichi
EXAMPLES=$(cat <<EOF | python3 | tail -n 1
import taichi.examples
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/win_test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if ("$env:TI_RUN_RELEASE_TESTS" -eq "1") {
Invoke pip install PyYAML
Invoke git clone https://github.com/taichi-dev/taichi-release-tests
Push-Location taichi-release-tests
Invoke git checkout 20221230
Invoke git checkout 20230130
mkdir -p repos/taichi/python/taichi
$EXAMPLES = & python -c 'import taichi.examples as e; print(e.__path__._path[0])' | Select-Object -Last 1
Push-Location repos
Expand Down
Loading