Home
last modified time | relevance | path

Searched refs:backend_name (Results 1 – 22 of 22) sorted by relevance

/third_party/mindspore/mindspore/communication/
Dmanagement.py85 def init(backend_name=None): argument
117 if backend_name is None:
119 backend_name = "hccl"
121 backend_name = "nccl"
125 if not isinstance(backend_name, str):
126 raise TypeError("Backend name must be a string, but got {}".format(type(backend_name)))
128 if backend_name == "hccl":
139 elif backend_name == "nccl":
145 raise RuntimeError("Backend name {} is not supported.".format(backend_name))
/third_party/libwebsockets/lib/event-libs/libev/
Dlibev.c164 const char *backend_name; in elops_init_pt_ev() local
197 backend_name = "select"; in elops_init_pt_ev()
200 backend_name = "poll"; in elops_init_pt_ev()
203 backend_name = "epoll"; in elops_init_pt_ev()
207 backend_name = "Linux AIO"; in elops_init_pt_ev()
212 backend_name = "Linux io_uring"; in elops_init_pt_ev()
216 backend_name = "kqueue"; in elops_init_pt_ev()
219 backend_name = "/dev/poll"; in elops_init_pt_ev()
222 backend_name = "Solaris 10 \"port\""; in elops_init_pt_ev()
225 backend_name = "Unknown libev backend"; in elops_init_pt_ev()
[all …]
/third_party/boost/libs/locale/test/
Dtest_date_time.cpp56 std::string backend_name = def[type]; in main() local
172 if(backend_name == "icu") { in main()
201 if(backend_name!="icu" || BOOST_ICU_VER<408 || BOOST_ICU_VER > 6000) { in main()
211 if(backend_name!="icu" || BOOST_ICU_VER<408 || BOOST_ICU_VER > 6000) { in main()
220 if(backend_name!="icu" || BOOST_ICU_VER<408 || BOOST_ICU_VER > 6000) { in main()
228 if(backend_name!="icu" || BOOST_ICU_VER<408 || BOOST_ICU_VER > 6000) { in main()
236 if(backend_name!="icu" || BOOST_ICU_VER<408 || BOOST_ICU_VER > 6000) { in main()
/third_party/boost/libs/locale/src/shared/
Dlocalization_backend.cpp75 … void select(std::string const &backend_name,locale_category_type category = all_categories) in select() argument
79 if(all_backends_[id].first == backend_name) in select()
224 …void localization_backend_manager::select(std::string const &backend_name,locale_category_type cat… in select() argument
226 pimpl_->select(backend_name,category); in select()
/third_party/mindspore/tests/st/hcom/
Dhcom_sparsetensor.py55 init(backend_name='nccl')
57 init(backend_name='hccl')
163 init(backend_name='hccl')
/third_party/mindspore/mindspore/ccsrc/debug/
Ddebug_services.cc725 void DebugServices::ConvertReadTensors(std::vector<std::string> backend_name, std::vector<size_t> s… in ConvertReadTensors() argument
731 for (unsigned int i = 0; i < backend_name.size(); i++) { in ConvertReadTensors()
733 std::string dump_style_kernel_name = backend_name[i]; in ConvertReadTensors()
855 void DebugServices::AddToTensorData(const std::string &backend_name, const std::string &time_stamp, in AddToTensorData() argument
863 tensor_data->SetName(backend_name); in AddToTensorData()
927 void DebugServices::ReadDumpedTensor(std::vector<std::string> backend_name, std::vector<size_t> slo… in ReadDumpedTensor() argument
933 for (unsigned int i = 0; i < backend_name.size(); i++) { in ReadDumpedTensor()
935 std::string dump_style_kernel_name = backend_name[i]; in ReadDumpedTensor()
951 …ReadDumpedTensorSync(prefix_dump_file_name, specific_dump_dir, backend_name[i], slot[i], device_id… in ReadDumpedTensor()
954 …ensorAsync(specific_dump_dir, prefix_dump_to_check, slot_string_to_check, backend_name[i], slot[i], in ReadDumpedTensor()
[all …]
Ddebug_services.h312 …void AddToTensorData(const std::string &backend_name, const std::string &time_stamp, const std::si…
321 void ReadDumpedTensor(std::vector<std::string> backend_name, std::vector<size_t> slot,
333 const std::string &backend_name, const unsigned int device_id,
339 const std::string &backend_name, size_t slot, unsigned int device_id,
344 … const std::string &slot_string_to_check, const std::string &backend_name, size_t slot,
366 void ConvertReadTensors(std::vector<std::string> backend_name, std::vector<size_t> slot,
Dtensor_load.h158 bool CheckMemoryAvailable(const std::string &backend_name, const uint64_t data_size) { in CheckMemoryAvailable() argument
162 …MS_LOG(ERROR) << "Failed to load data of tensor " << backend_name << " because the its data size (… in CheckMemoryAvailable()
/third_party/mindspore/mindspore/ccsrc/vm/
Dgraph_partition.h35 …xplicit GraphPartition(const std::vector<PrimitivePtr> &cut_list, const std::string &backend_name);
Dbackend.h103 …MindRTBackend(const std::string &backend_name, const std::string &device_name, uint32_t device_id);
Dgraph_partition.cc621 …rtition::GraphPartition(const std::vector<PrimitivePtr> &cut_list, const std::string &backend_name) in GraphPartition() argument
622 : cut_list_(cut_list), backend_name_(backend_name) {} in GraphPartition()
Dbackend.cc348 MindRTBackend::MindRTBackend(const std::string &backend_name, const std::string &device_name, uint3… in MindRTBackend() argument
349 : Backend(backend_name), device_name_(device_name) { in MindRTBackend()
355 graph_partition_ = std::make_shared<GraphPartition>(cut_list, backend_name); in MindRTBackend()
/third_party/mindspore/mindspore/ccsrc/debug/debugger/offline_debug/
Ddbg_services.cc236 std::vector<std::string> backend_name; in ReadTensorsUtil() local
244 …(void)std::transform(info.begin(), info.end(), std::back_inserter(backend_name), GetTensorFullName… in ReadTensorsUtil()
256 …debug_services_->ConvertReadTensors(backend_name, slot, rank_id, iteration, root_graph_id, &file_p… in ReadTensorsUtil()
258 …debug_services_->ReadDumpedTensor(backend_name, slot, rank_id, iteration, root_graph_id, is_output… in ReadTensorsUtil()
/third_party/boost/boost/locale/
Dlocalization_backend.hpp158 … void select(std::string const &backend_name,locale_category_type category = all_categories);
/third_party/mesa3d/src/gbm/main/
Dgbm_abi_check.c181 const char *backend_name; member
406 CHECK_MEMBER_CURRENT(gbm_backend_v0, _abi0, backend_name); in main()
Dgbm_backend_abi.h246 const char *backend_name; member
/third_party/mindspore/tests/st/auto_parallel/
Doptimizer_parallel.py103 init(backend_name='hccl')
249 init(backend_name='hccl')
Dmultifieldembeddinglookup_parallel.py101 init(backend_name='nccl')
237 init(backend_name='nccl')
Dparallel_strategy_search.py106 init(backend_name='hccl')
274 init(backend_name='hccl')
/third_party/skia/tools/skqp/
DREADME_ALGORITHM.md88 backend_name,render_test_name,max_error,bad_pixels,total_error
/third_party/flutter/skia/tools/skqp/
DREADME_ALGORITHM.md88 backend_name,render_test_name,max_error,bad_pixels,total_error
/third_party/mesa3d/src/gbm/backends/dri/
Dgbm_dri.c1470 .v0.backend_name = "dri",