From 1d1d221f26bc4db45704a012c127b67484c42734 Mon Sep 17 00:00:00 2001 From: Zeng Jinle <32832641+sneaxiy@users.noreply.github.com> Date: Fri, 11 Oct 2019 07:45:03 +0800 Subject: [PATCH] refine allocator_flag, test=develop, test=document_fix (#20400) --- paddle/fluid/platform/flags.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/paddle/fluid/platform/flags.cc b/paddle/fluid/platform/flags.cc index e40d0cf18a9..c77d8b4e70b 100644 --- a/paddle/fluid/platform/flags.cc +++ b/paddle/fluid/platform/flags.cc @@ -301,11 +301,9 @@ DEFINE_double(memory_fraction_of_eager_deletion, 1.0, * Allocator related FLAG * Name: FLAGS_allocator_strategy * Since Version: 1.2 - * Value Range: string, {naive_best_fit, auto_groth}, default=naive_best_fit + * Value Range: string, {naive_best_fit, auto_growth}, default=naive_best_fit * Example: - * Note: Allocator policy for selecting Paddle Paddle. - * The allocator strategy is under development and the non-legacy - * allocator is not yet stable. + * Note: For selecting allocator policy of PaddlePaddle. */ DEFINE_string(allocator_strategy, "naive_best_fit", "The allocation strategy. naive_best_fit means the original best " -- GitLab