|
- /**
- * Copyright 2019 Huawei Technologies Co., Ltd
- *
- * 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 "common/utils.h"
- #include <string>
- #include <vector>
- #include <atomic>
-
- namespace mindspore {
- namespace common {
- const int CACHED_STR_NUM = 1 << 8;
- const int CACHED_STR_MASK = CACHED_STR_NUM - 1;
- std::vector<std::string> STR_HOLDER(CACHED_STR_NUM);
- const char *SafeCStr(const std::string &&str) {
- static std::atomic<uint32_t> index{0};
- uint32_t cur_index = index++;
- cur_index = cur_index & CACHED_STR_MASK;
- STR_HOLDER[cur_index] = str;
- return STR_HOLDER[cur_index].c_str();
- }
- } // namespace common
- } // namespace mindspore
|