From cf5742ac486f8aab13a82024cadb3c3a0b23735d Mon Sep 17 00:00:00 2001 From: levi131 <83750468+levi131@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:37:22 +0800 Subject: [PATCH] Lml/fix utf8 bug windows (#44945) * for test * Revert "for test" This reverts commit baf58738ca485a06073d771e20e3644d8811bf31. * fix utf8 bug on windows --- paddle/fluid/operators/prim_ops/split_p_op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/operators/prim_ops/split_p_op.cc b/paddle/fluid/operators/prim_ops/split_p_op.cc index 4ad9d82467..0584de504e 100644 --- a/paddle/fluid/operators/prim_ops/split_p_op.cc +++ b/paddle/fluid/operators/prim_ops/split_p_op.cc @@ -51,7 +51,7 @@ class SplitPrimOpMaker : public framework::OpProtoAndCheckerMaker { "num_or_sections indicates the number of equal sized sub-Tensors that " "the input will be divided into. If num_or_sections has more then one " "element, the length of it indicates the number of sub-Tensors and the " - "elements in it indicate the sizes of sub-Tensors’ dimension orderly. " + "elements in it indicate the sizes of sub-Tensors' dimension orderly. " "The length of the vector must not be larger than the input's size of " "specified axis."); AddComment(R"DOC( -- GitLab