Skip to content

Commit

Permalink
Make the pjrt gpu allocator configurable (#5759)
Browse files Browse the repository at this point in the history
* Make the pjrt gpu allocator configurable

* the default value changed from 0.9 to 0.75

* return default GpuAllocatorConfig

---------

Co-authored-by: wangang.wa <wangang.wa@alibaba-inc.com>
  • Loading branch information
2 people authored and bhavya01 committed Apr 22, 2024
1 parent 6fbdecf commit a52e521
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
3 changes: 3 additions & 0 deletions torch_xla/csrc/runtime/env_vars.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ const char* const kEnvNeuronLibraryPath = "NEURON_LIBRARY_PATH";
const char* const kEnvPjrtDistServiceAddr = "PJRT_DIST_SERVICE_ADDR";
const char* const kEnvPjRtLocalProcessCount = "PJRT_LOCAL_PROCESS_COUNT";
const char* const kEnvPjRtLocalRank = "PJRT_LOCAL_PROCESS_RANK";
const char* const kEnvPjrtAllocatorCudaAsync = "PJRT_ALLOCATOR_CUDA_ASYNC";
const char* const kEnvPjrtAllocatorPreallocate = "PJRT_ALLOCATOR_PREALLOCATE";
const char* const kEnvPjrtAllocatorFraction = "PJRT_ALLOCATOR_FRACTION";

} // namespace env
} // namespace runtime
Expand Down
3 changes: 3 additions & 0 deletions torch_xla/csrc/runtime/env_vars.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ extern const char* const kEnvNeuronLibraryPath;
extern const char* const kEnvPjrtDistServiceAddr;
extern const char* const kEnvPjRtLocalProcessCount;
extern const char* const kEnvPjRtLocalRank;
extern const char* const kEnvPjrtAllocatorCudaAsync;
extern const char* const kEnvPjrtAllocatorPreallocate;
extern const char* const kEnvPjrtAllocatorFraction;

} // namespace env
} // namespace runtime
Expand Down
19 changes: 18 additions & 1 deletion torch_xla/csrc/runtime/pjrt_computation_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,23 @@ xla::Shape host_output_shape(xla::PjRtBuffer* buffer) {
return xla::ShapeUtil::DeviceShapeToHostShape(shape);
}

xla::GpuAllocatorConfig GetGpuAllocatorConfig() {
auto allocator_config = xla::GpuAllocatorConfig{};
if (sys_util::GetEnvString(env::kEnvPjrtAllocatorCudaAsync, "").empty() &&
sys_util::GetEnvString(env::kEnvPjrtAllocatorPreallocate, "").empty() &&
sys_util::GetEnvString(env::kEnvPjrtAllocatorFraction, "").empty()) {
return allocator_config;
}
if (sys_util::GetEnvBool(env::kEnvPjrtAllocatorCudaAsync, false)) {
allocator_config.kind = xla::GpuAllocatorConfig::Kind::kCudaAsync;
}
allocator_config.preallocate =
sys_util::GetEnvBool(env::kEnvPjrtAllocatorPreallocate, true);
allocator_config.memory_fraction =
sys_util::GetEnvDouble(env::kEnvPjrtAllocatorFraction, 0.75);
return allocator_config;
}

} // namespace

std::string PjRtComputationClient::PjRtDeviceToString(
Expand Down Expand Up @@ -141,7 +158,7 @@ PjRtComputationClient::PjRtComputationClient() {
<< global_process_rank << ", num_nodes=" << global_world_size;
client_ = std::move(xla::GetStreamExecutorGpuClient(
/*asynchronous=*/async,
/*allocator_config=*/xla::GpuAllocatorConfig{},
/*allocator_config=*/GetGpuAllocatorConfig(),
/*node_id=*/global_process_rank,
/*num_nodes=*/global_world_size,
/*allowed_devices=*/allowed_devices,
Expand Down

0 comments on commit a52e521

Please sign in to comment.