STT-tensorflow/tensorflow/core/grappler/devices.cc
TensorFlower Gardener 473d139b18 Merge pull request #36639 from ROCmSoftwarePlatform:google-upstream-grappler
PiperOrigin-RevId: 300487910
Change-Id: I167b479f229c617e18b5b8185d8042e8e4a992bc
2020-03-11 23:59:13 -07:00

106 lines
3.6 KiB
C++

/* 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.
==============================================================================*/
#include <memory>
#include "tensorflow/core/grappler/devices.h"
#include "tensorflow/core/platform/byte_order.h"
#include "tensorflow/core/platform/cpu_info.h"
#if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
#include "tensorflow/core/common_runtime/gpu/gpu_init.h"
#include "tensorflow/core/platform/stream_executor.h"
#endif // GOOGLE_CUDA
namespace tensorflow {
namespace grappler {
int GetNumAvailableGPUs(
const std::pair<int, int>& min_cuda_compute_capability) {
int num_eligible_gpus = 0;
#if TENSORFLOW_USE_ROCM
if (min_cuda_compute_capability.first != 0 ||
min_cuda_compute_capability.second != 0) {
LOG(ERROR) << "GetNumAvailableGPUs() should receive zero "
"min_cuda_compute_capability";
return 0;
}
#endif
#if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
if (ValidateGPUMachineManager().ok()) {
se::Platform* gpu_manager = GPUMachineManager();
if (gpu_manager != nullptr) {
int num_gpus = gpu_manager->VisibleDeviceCount();
for (int i = 0; i < num_gpus; i++) {
#if GOOGLE_CUDA
auto desc_status = gpu_manager->DescriptionForDevice(i);
if (desc_status.ok()) {
auto desc = desc_status.ConsumeValueOrDie();
int cc_major = 0;
int cc_minor = 0;
desc->cuda_compute_capability(&cc_major, &cc_minor);
std::pair<int, int> cuda_compute_capability(cc_major, cc_minor);
int min_gpu_core_count = 8;
if (desc->core_count() >= min_gpu_core_count &&
cuda_compute_capability >= min_cuda_compute_capability) {
num_eligible_gpus++;
}
}
#else
num_eligible_gpus++;
#endif
}
}
}
#if GOOGLE_CUDA
LOG(INFO)
<< "Number of eligible GPUs (core count >= 8, compute capability >= "
<< min_cuda_compute_capability.first << "."
<< min_cuda_compute_capability.second << "): " << num_eligible_gpus;
#else
LOG(INFO) << "Number of eligible GPUs: " << num_eligible_gpus;
#endif
#else // GOOGLE_CUDA || TENSORFLOW_USE_ROCM
LOG(INFO)
<< "Number of eligible GPUs (core count >= 8, compute capability >= "
<< min_cuda_compute_capability.first << "."
<< min_cuda_compute_capability.second << "): " << num_eligible_gpus
<< " (Note: TensorFlow was not compiled with CUDA or ROCm support)";
#endif // GOOGLE_CUDA || TENSORFLOW_USE_ROCM
return num_eligible_gpus;
}
int64 AvailableGPUMemory(int gpu_id) {
#if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
// Look up the device, to see its attributes.
se::Platform* gpu_platform = GPUMachineManager();
CHECK_LT(gpu_id, gpu_platform->VisibleDeviceCount());
se::StreamExecutor* se = gpu_platform->ExecutorForDevice(gpu_id).ValueOrDie();
int64 total_memory, available_memory;
CHECK(se->DeviceMemoryUsage(&available_memory, &total_memory));
return available_memory;
#else
return 0;
#endif
}
int GetNumAvailableLogicalCPUCores() { return port::NumSchedulableCPUs(); }
} // end namespace grappler
} // end namespace tensorflow