Skip to content

Commit

Permalink
WIP: More hack to find TF error
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Vamos <[email protected]>
  • Loading branch information
AttilaVamos committed Jan 30, 2025
1 parent 8c60e2e commit 9a122d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bundleTest-thor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ jobs:
sudo apt install libsvm-dev libsvm-tools
sudo pip install tensorflow-cpu numpy keras
echo "Tensorflow version: $(python3 -c 'import tensorflow as tf; print(tf.__version__)')"
echo "Tensorflow version: $(python3 -c 'import tensorflow.compat.v1 as tf; tf.disable_v2_behavior(); print(tf.__version__)')"
echo "TF + NumPy: $(python3 -c 'import tensorflow as tf; tf.add(1, 2).numpy()')"
echo "Tensorflow version : $(python3 -c 'import tensorflow as tf; print(tf.__version__)')"
echo "Tensorflow version v1: $(python3 -c 'import tensorflow.compat.v1 as tf; tf.disable_v2_behavior(); print(tf.__version__)')"
echo "TF + NumPy: $(python3 -c 'import tensorflow as tf; print(\"TF+NumPy:\", tf.add(1, 2).numpy())')"
- name: Start HPCC-Platform
shell: "bash"
Expand Down

0 comments on commit 9a122d9

Please sign in to comment.