/* 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_DTENSOR_MLIR_DEVICE_UTILS_H_ #define TENSORFLOW_DTENSOR_MLIR_DEVICE_UTILS_H_ #include "mlir/Dialect/Func/IR/FuncOps.h" // from @llvm-project #include "mlir/IR/Builders.h" // from @llvm-project #include "mlir/IR/BuiltinOps.h" // from @llvm-project #include "mlir/IR/Location.h" // from @llvm-project #include "mlir/IR/Operation.h" // from @llvm-project #include "mlir/IR/Value.h" // from @llvm-project #include "tensorflow/dtensor/cc/dstatus.h" #include "tensorflow/dtensor/cc/tensor_layout.h" namespace tensorflow { namespace dtensor { // Returns an MLIR value representing the current device ID. Passing op is // assumed to be wrapped by a function graph from dtensor_device, and the first // argument of the it need to be DeviceId. StatusOr DeviceId(mlir::Operation* op); StatusOr DeviceId(mlir::Value val); // Returns the device ordinal of the device executing a function. Device ordinal // is the index of a TF device among all TF devices of the same type attached to // the same TF task. StatusOr GetDeviceOrdinal(const Mesh& mesh, const mlir::Location& loc, mlir::func::FuncOp function, mlir::OpBuilder* builder, bool return_int64_type = true); } // namespace dtensor } // namespace tensorflow #endif // TENSORFLOW_DTENSOR_MLIR_DEVICE_UTILS_H_