Remove unused flag: xla_hlo_graph_for_compute_constant

PiperOrigin-RevId: 161686867
This commit is contained in:
A. Unique TensorFlower 2017-07-12 10:58:16 -07:00 committed by TensorFlower Gardener
parent de546d0669
commit 2195db6d86
2 changed files with 0 additions and 11 deletions

View File

@ -36,18 +36,12 @@ static std::once_flag flags_init;
static void AllocateFlags() {
flags = new ServiceFlags;
flags->xla_hlo_profile = false;
flags->xla_hlo_graph_for_compute_constant = false;
flags->xla_dump_computations_to = "";
flags->xla_dump_executions_to = "";
flag_list = new std::vector<tensorflow::Flag>({
tensorflow::Flag(
"xla_hlo_profile", &flags->xla_hlo_profile,
"Instrument the computation to collect per-HLO cycle counts"),
tensorflow::Flag(
"xla_hlo_graph_for_compute_constant",
&flags->xla_hlo_graph_for_compute_constant,
"If true, include hlo dumps of graphs from ComputeConstant."
"Such graphs still need to be matched via xla_generate_hlo_graph."),
tensorflow::Flag("xla_dump_computations_to",
&flags->xla_dump_computations_to,
"Dumps computations that XLA executes into the provided "

View File

@ -34,11 +34,6 @@ void AppendServiceFlags(std::vector<tensorflow::Flag>* flag_list);
typedef struct {
bool xla_hlo_profile; // Instrument the computation to collect per-HLO cycle
// counts
bool xla_hlo_graph_for_compute_constant; // If true, include hlo dumps of
// graphs from ComputeConstant.
// Such graphs still need to be
// matched via
// xla_generate_hlo_graph.
string xla_dump_computations_to; // Dumps computations that XLA executes
// into the provided directory path
// Dumps parameters and results of computations that XLA executes into