Files
tensorflow--tensorflow/tensorflow/dtensor/mlir/tpu_integration.cc
T
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

170 lines
6.9 KiB
C++

/* 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.
==============================================================================*/
#include <iterator>
#include <memory>
#include <string>
#include <utility>
#include "llvm/ADT/APInt.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "mlir/Dialect/Func/IR/FuncOps.h" // from @llvm-project
#include "mlir/IR/Attributes.h" // from @llvm-project
#include "mlir/IR/Builders.h" // from @llvm-project
#include "mlir/IR/BuiltinOps.h" // from @llvm-project
#include "mlir/IR/Operation.h" // from @llvm-project
#include "mlir/IR/Types.h" // from @llvm-project
#include "mlir/IR/Visitors.h" // from @llvm-project
#include "mlir/Pass/Pass.h" // from @llvm-project
#include "mlir/Pass/PassManager.h" // from @llvm-project
#include "mlir/Support/LogicalResult.h" // from @llvm-project
#include "mlir/Transforms/Passes.h" // from @llvm-project
#include "mlir/Transforms/RegionUtils.h" // from @llvm-project
#include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
#include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
#include "tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h"
#include "xla/hlo/builder/sharding_builder.h"
#include "tensorflow/dtensor/cc/constants.h"
#include "tensorflow/dtensor/cc/tensor_layout.h"
#include "tensorflow/dtensor/mlir/dtensor_dialect/ir/dialect.h"
#include "tensorflow/dtensor/mlir/dtensor_mlir_passes.h"
#include "tensorflow/dtensor/mlir/layout_parsing.h"
#include "tensorflow/dtensor/mlir/op_utils.h"
#include "tensorflow/dtensor/mlir/spmd_expander_common.h"
namespace tensorflow {
namespace dtensor {
namespace {
#define GEN_PASS_DEF_DTENSORTPUINTEGRATION
#include "tensorflow/dtensor/mlir/dtensor_passes.h.inc"
// Adds metadata used in TPU Compilation to `cluster` as attributes.
void AddMetadataToTPUCluster(const Mesh& mesh_config,
mlir::tf_device::ClusterOp cluster,
mlir::OpBuilder* builder) {
cluster->setAttr("_tpu_replicate",
builder->getStringAttr(mesh_config.ToString()));
cluster->setAttr("step_marker_location", builder->getStringAttr(""));
cluster->setAttr("padding_map", builder->getArrayAttr({}));
cluster->setAttr("use_spmd_for_xla_partitioning",
builder->getBoolAttr(false));
cluster->setAttr(tensorflow::kTopologyAttr, builder->getStringAttr(""));
cluster->setAttr(tensorflow::kDeviceAssignmentAttr,
builder->getArrayAttr({}));
cluster->setAttr(tensorflow::kNumCoresPerReplicaAttr,
builder->getI64IntegerAttr(1));
}
// TODO(hongjunchoi): Implement cluster inlining pass so that there are no
// nested tf_device.cluster ops with same mesh.
void IdentifyTPUFunctions(
mlir::ModuleOp module, llvm::SmallVectorImpl<Mesh>* tpu_meshs,
llvm::SmallVectorImpl<mlir::TF::StatefulPartitionedCallOp>* tpu_functions) {
auto main_func = module.lookupSymbol<mlir::func::FuncOp>("main");
if (!main_func) return;
for (auto call : main_func.getOps<mlir::TF::StatefulPartitionedCallOp>()) {
auto mesh_or_status = Mesh::FromString(std::string(call.getConfig()));
// Function calls created by end users instead of being converted from
// tf_device.cluster do not have a serialized mesh as a config attribute. We
// ignore the error returned from parsing in this case.
if (!mesh_or_status.ok()) return;
bool skip_xla_compilation = false;
if (call->hasAttr(kSkipXlaCompilation)) {
skip_xla_compilation =
call->getAttrOfType<mlir::BoolAttr>(kSkipXlaCompilation).getValue();
}
if (mesh_or_status->is_tpu_mesh() && !skip_xla_compilation) {
tpu_functions->emplace_back(call);
tpu_meshs->emplace_back(std::move(mesh_or_status.value()));
}
}
}
mlir::LogicalResult CreateTPUCluster(
mlir::TF::StatefulPartitionedCallOp tpu_call, mlir::OpBuilder* builder,
mlir::tf_device::ClusterOp* newly_created_cluster) {
auto function = MaybeFindFunction(tpu_call);
if (!function)
return tpu_call.emitOpError(
"failed during TPU Integration as Func op TPU mesh was not found");
auto& function_block = function->getCallableRegion()->front();
builder->setInsertionPointToStart(&function_block);
auto cluster = mlir::tf_device::ClusterOp::create(*builder, tpu_call.getLoc(),
function->getResultTypes());
cluster.getBody().push_back(new mlir::Block);
auto& function_body = function_block.getOperations();
cluster.GetBody().getOperations().splice(
cluster.GetBody().getOperations().begin(), function_body,
std::next(function_body.begin()), std::prev(function_body.end()));
builder->setInsertionPointToEnd(&cluster.GetBody());
mlir::Operation* function_block_terminator = function_block.getTerminator();
mlir::tf_device::ReturnOp::create(*builder, tpu_call.getLoc(),
function_block_terminator->getOperands());
function_block_terminator->setOperands(cluster.getResults());
*newly_created_cluster = cluster;
return mlir::success();
}
struct DTensorTPUIntegration
: public impl::DTensorTPUIntegrationBase<DTensorTPUIntegration> {
void getDependentDialects(mlir::DialectRegistry& registry) const override {
registry.insert<mlir::dtensor::DTensorDialect>();
registry.insert<mlir::tf_device::TensorFlowDeviceDialect>();
}
void runOnOperation() override {
mlir::MLIRContext& context = getContext();
mlir::OpBuilder op_builder(&context);
auto module = getOperation();
llvm::SmallVector<mlir::TF::StatefulPartitionedCallOp, 4> tpu_functions;
llvm::SmallVector<Mesh, 4> tpu_meshes;
IdentifyTPUFunctions(module, &tpu_meshes, &tpu_functions);
for (auto tpu_function_and_mesh : llvm::zip(tpu_meshes, tpu_functions)) {
mlir::tf_device::ClusterOp cluster;
if (mlir::failed(CreateTPUCluster(std::get<1>(tpu_function_and_mesh),
&op_builder, &cluster)))
return signalPassFailure();
AddMetadataToTPUCluster(std::get<0>(tpu_function_and_mesh), cluster,
&op_builder);
}
};
};
} // namespace
std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
CreateDTensorTPUIntegration() {
return std::make_unique<DTensorTPUIntegration>();
}
} // namespace dtensor
} // namespace tensorflow