File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
tensorflow/tools/ci_build Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 83
83
# support for Google Cloud Platform (GCP), which is
84
84
# enabled by default.
85
85
# TF_BUILD_OPTIONS:
86
- # (FASTBUILD | OPT | OPTDBG | MAVX | MAVX2)
86
+ # (FASTBUILD | OPT | OPTDBG | MAVX | MAVX2 | MAVX_DBG |
87
+ # MAVX2_FMA_DBG)
87
88
# Use the specified configurations when building.
88
89
# When set, overrides TF_BUILD_IS_OPT and TF_BUILD_MAVX
89
90
# options, as this will replace the two.
@@ -304,12 +305,15 @@ else
304
305
MAVX)
305
306
OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-mavx"
306
307
;;
307
- MAVXDBG )
308
+ MAVX_DBG )
308
309
OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-g --copt=-mavx"
309
310
;;
310
311
MAVX2)
311
312
OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-mavx2"
312
313
;;
314
+ MAVX2_FMA_DBG)
315
+ OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-g --copt=-mavx2 --copt=-mfma"
316
+ ;;
313
317
esac
314
318
fi
315
319
You can’t perform that action at this time.
0 commit comments