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 84
84
# support for Google Cloud Platform (GCP), which is
85
85
# enabled by default.
86
86
# TF_BUILD_OPTIONS:
87
- # (FASTBUILD | OPT | OPTDBG | MAVX | MAVX2)
87
+ # (FASTBUILD | OPT | OPTDBG | MAVX | MAVX2 | MAVX_DBG |
88
+ # MAVX2_FMA_DBG)
88
89
# Use the specified configurations when building.
89
90
# When set, overrides TF_BUILD_IS_OPT and TF_BUILD_MAVX
90
91
# options, as this will replace the two.
@@ -305,12 +306,15 @@ else
305
306
MAVX)
306
307
OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-mavx"
307
308
;;
308
- MAVXDBG )
309
+ MAVX_DBG )
309
310
OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-g --copt=-mavx"
310
311
;;
311
312
MAVX2)
312
313
OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-mavx2"
313
314
;;
315
+ MAVX2_FMA_DBG)
316
+ OPT_FLAG=" ${OPT_FLAG} -c opt --copt=-g --copt=-mavx2 --copt=-mfma"
317
+ ;;
314
318
esac
315
319
fi
316
320
You can’t perform that action at this time.
0 commit comments