From e8d66ec67a3761843efbad5948410a492975eacd Mon Sep 17 00:00:00 2001 From: dskkato Date: Wed, 28 Dec 2022 14:49:49 +0900 Subject: [PATCH] revert build script --- test_resources/library/build-test-op | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test_resources/library/build-test-op b/test_resources/library/build-test-op index 99d1a4aeb..f3a1fa18e 100755 --- a/test_resources/library/build-test-op +++ b/test_resources/library/build-test-op @@ -2,6 +2,4 @@ TF_CFLAGS=( $(python -c 'import tensorflow as tf; print(" ".join(tf.sysconfig.get_compile_flags()))') ) TF_LFLAGS=( $(python -c 'import tensorflow as tf; print(" ".join(tf.sysconfig.get_link_flags()))') ) -cmd="g++ -std=c++14 -shared test_op.cc -o test_op.so -fPIC ${TF_CFLAGS[@]} ${TF_LFLAGS[@]} -O2" -echo $cmd -$cmd +g++ -std=c++14 -shared test_op.cc -o test_op.so -fPIC ${TF_CFLAGS[@]} ${TF_LFLAGS[@]} -O2