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

Add opt-test target #2122

Merged
merged 12 commits into from
Aug 26, 2024
Prev Previous commit
Next Next commit
Update validate_container.sh script to skip opt-test target
  • Loading branch information
bmhowe23 committed Aug 23, 2024
commit 48cb2b7f6431edde2206aa731156f7781c431b8a
4 changes: 4 additions & 0 deletions scripts/validate_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ available_backends=`\
if grep -q "library-mode-execution-manager: photonics" $file ; then
continue
fi
# Skip optimization test targets
if [[ $file == *"opt-test.yml" ]]; then
continue
fi
platform=$(cat $file | grep "platform-qpu:")
qpu=${platform##* }
requirements=$(cat $file | grep "gpu-requirements:")
Expand Down
Loading