/* Copyright 2017 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. ==============================================================================*/ // Registers the XLA_GPU device, which is an XlaDevice instantiation that runs // operators using XLA via the XLA "CUDA" or "ROCM" (GPU) backend. #include #include #include "absl/memory/memory.h" #include "absl/strings/numbers.h" #include "absl/strings/str_split.h" #include "tensorflow/compiler/jit/defs.h" #include "tensorflow/compiler/jit/flags.h" #include "tensorflow/compiler/jit/kernels/xla_ops.h" #include "tensorflow/compiler/jit/xla_device.h" #include "tensorflow/compiler/jit/xla_device_ops.h" #include "tensorflow/compiler/jit/xla_platform_info.h" #include "tensorflow/compiler/tf2xla/layout_util.h" #include "tensorflow/compiler/tf2xla/xla_op_registry.h" #include "xla/stream_executor/gpu/gpu_init.h" #include "xla/stream_executor/platform_manager.h" #include "tensorflow/core/common_runtime/device_factory.h" #include "tensorflow/core/framework/types.pb.h" #include "tensorflow/core/lib/core/status.h" namespace tensorflow { class XlaGpuDeviceFactory : public DeviceFactory { public: absl::Status ListPhysicalDevices(std::vector* devices) override; absl::Status CreateDevices( const SessionOptions& options, const std::string& name_prefix, std::vector>* devices) override; }; absl::Status XlaGpuDeviceFactory::ListPhysicalDevices( std::vector* devices) { XlaDeviceFlags* flags = GetXlaDeviceFlags(); if (!flags->tf_xla_enable_xla_devices && !XlaDevicesCreationRequired()) { VLOG(1) << "Not creating XLA devices, tf_xla_enable_xla_devices not set " "and XLA devices creation not required"; return absl::OkStatus(); } auto platform = se::PlatformManager::PlatformWithName(se::GpuPlatformName()); if (!platform.ok()) { // Treat failures as non-fatal; there might not be a GPU in the machine. VLOG(1) << "Failed to create XLA_GPU device: " << platform.status(); return absl::OkStatus(); } int device_count = platform.value()->VisibleDeviceCount(); if (device_count <= 0) { return absl::OkStatus(); } for (int i = 0; i < device_count; ++i) { devices->push_back( absl::StrCat("/physical_device:", DEVICE_XLA_GPU, ":", i)); } return absl::OkStatus(); } absl::Status XlaGpuDeviceFactory::CreateDevices( const SessionOptions& session_options, const std::string& name_prefix, std::vector>* devices) { XlaDeviceFlags* flags = GetXlaDeviceFlags(); if (!flags->tf_xla_enable_xla_devices && !XlaDevicesCreationRequired()) { VLOG(1) << "Not creating XLA devices, tf_xla_enable_xla_devices not set"; return absl::OkStatus(); } XlaOpRegistry::DeviceRegistration registration; registration.compilation_device_name = DEVICE_GPU_XLA_JIT; registration.autoclustering_policy = XlaOpRegistry::AutoclusteringPolicy::kAlways; registration.cluster_resource_variable_ops_unsafely = true; registration.cluster_stack_ops = false; registration.cluster_tensor_array_ops = true; registration.cluster_stateful_rng_ops = true; registration.cluster_control_trigger = true; registration.elide_assert_and_checknumerics = true; registration.cluster_variant_ops = true; registration.cluster_slow_ops = true; registration.cluster_inaccurate_ops = true; XlaOpRegistry::RegisterCompilationDevice(DEVICE_XLA_GPU, registration); static XlaDeviceOpRegistrations* registrations = RegisterXlaDeviceKernels(DEVICE_XLA_GPU, DEVICE_GPU_XLA_JIT); (void)registrations; auto platform = se::PlatformManager::PlatformWithName(se::GpuPlatformName()); if (!platform.ok()) { // Treat failures as non-fatal; there might not be a GPU in the machine. VLOG(1) << "Failed to create XLA_GPU device: " << platform.status(); return absl::OkStatus(); } auto iter = session_options.config.device_count().find("GPU"); if (iter != session_options.config.device_count().end() && iter->second == 0) { // Device count for GPU is 0. return absl::OkStatus(); } std::string allowed_gpus = session_options.config.gpu_options().visible_device_list(); std::optional> gpu_ids = ParseVisibleDeviceList(allowed_gpus).value(); if (!gpu_ids) { gpu_ids.emplace(); // Fill the gpu_ids set with all devices if config string is empty. for (int i = 0; i < platform.value()->VisibleDeviceCount(); ++i) { gpu_ids->insert(i); } } for (int i : *gpu_ids) { XlaDevice::Options options; options.platform = platform.value(); options.device_name_prefix = name_prefix; options.device_name = DEVICE_XLA_GPU; options.device_ordinal = i; options.compilation_device_name = DEVICE_GPU_XLA_JIT; options.use_multiple_streams = true; options.allowed_devices = gpu_ids; XlaShapeLayoutHelpers::ShapeDeterminationFns shape_representation_fns{ UseNoPreferenceLayoutFn(), IdentityShapeRepresentationFn()}; options.shape_determination_fns = {shape_representation_fns}; auto device = std::make_unique(session_options, options); absl::Status status = device->UseAcceleratorDeviceInfo(); if (!status.ok()) { LOG(INFO) << "Ignoring visible " << DEVICE_GPU_XLA_JIT << " device. Device number is " << i << ", reason: " << status; continue; } devices->push_back(std::move(device)); } return absl::OkStatus(); } REGISTER_LOCAL_DEVICE_FACTORY(DEVICE_XLA_GPU, XlaGpuDeviceFactory); // Kernel registrations constexpr std::array kAllXlaGpuTypes = {{DT_UINT8, DT_QUINT8, DT_UINT16, DT_INT8, DT_QINT8, DT_INT16, DT_INT32, DT_QINT32, DT_INT64, DT_HALF, DT_FLOAT, DT_DOUBLE, DT_COMPLEX64, DT_COMPLEX128, DT_BOOL, DT_BFLOAT16, DT_FLOAT8_E5M2, DT_FLOAT8_E4M3FN, DT_FLOAT8_E4M3FNUZ, DT_FLOAT8_E4M3B11FNUZ, DT_FLOAT8_E5M2FNUZ, DT_INT4, DT_UINT4}}; REGISTER_XLA_LAUNCH_KERNEL(DEVICE_XLA_GPU, XlaLocalLaunchOp, kAllXlaGpuTypes); REGISTER_XLA_COMPILE_KERNEL(DEVICE_XLA_GPU, XlaCompileOp, kAllXlaGpuTypes); REGISTER_XLA_RUN_KERNEL(DEVICE_XLA_GPU, XlaRunOp, kAllXlaGpuTypes); REGISTER_XLA_DEVICE_KERNELS(DEVICE_XLA_GPU, kAllXlaGpuTypes); } // namespace tensorflow