blob: d65d59a91f1ded4b4f0b6f3f405c77c6fd001596 [file] [log] [blame]
/* Copyright 2022 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_CORE_PROFILER_CONVERT_HLO_TO_TOOLS_DATA_H_
#define TENSORFLOW_CORE_PROFILER_CONVERT_HLO_TO_TOOLS_DATA_H_
#include <string>
#include <utility>
#include <variant>
#include <vector>
#include "absl/container/flat_hash_map.h"
#include "absl/strings/string_view.h"
namespace tensorflow {
namespace profiler {
// Convert HLO proto to tool specific data.
// <options> must provide a "hlo_module_name" field to identify which HLO proto
// is used for the conversion.
// The file path of the HLO proto is automatically inferred from <xspace_paths>
// and <options>.
// Return the serialized string of tool specific data and whether the conversion
// is successful.
std::pair<std::string, bool> ConvertHloProtoToToolData(
const std::vector<std::string>& xspace_paths,
const absl::string_view tool_name,
const absl::flat_hash_map<std::string, std::variant<int, std::string>>&
options);
} // namespace profiler
} // namespace tensorflow
#endif // TENSORFLOW_CORE_PROFILER_CONVERT_HLO_TO_TOOLS_DATA_H_