Home
last modified time | relevance | path

Searched refs:init_params (Results 1 – 12 of 12) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/pipeline/jit/
Dpipeline_ge.h38 void RunGEInitGraph(const py::dict &init_params, const std::string &phase);
43 …phPtr BuildDFGraph(const std::map<std::string, ExecutorInfoPtr> &info, const py::dict &init_params,
Dpipeline_ge.cc177 bool AddDFGraph(const std::map<std::string, ExecutorInfoPtr> &info, const py::dict &init_params, in AddDFGraph() argument
191 ConvertObjectToTensors(init_params, &init_tensors); in AddDFGraph()
241 …phPtr BuildDFGraph(const std::map<std::string, ExecutorInfoPtr> &info, const py::dict &init_params, in BuildDFGraph() argument
254 if (!AddDFGraph(info, init_params, phase, broadcast_params)) { in BuildDFGraph()
273 void RunGEInitGraph(const py::dict &init_params, const std::string &phase) { in RunGEInitGraph() argument
276 ConvertObjectToTensors(init_params, &inputs_with_name); in RunGEInitGraph()
Dpipeline.h93 FuncGraphPtr BuildGraph(const py::dict &init_params, const std::string &phase,
97 void RunInitGraph(const py::dict &init_params, const std::string &phase) const;
Dpipeline.cc1096 FuncGraphPtr GraphExecutorPy::BuildGraph(const py::dict &init_params, const std::string &phase, in BuildGraph() argument
1099 return BuildDFGraph(info_, init_params, phase, broadcast_params); in BuildGraph()
1123 void GraphExecutorPy::RunInitGraph(const py::dict &init_params, const std::string &phase) const { in RunInitGraph() argument
1125 RunGEInitGraph(init_params, phase); in RunInitGraph()
/third_party/boost/boost/log/detail/
Dformat.hpp173 init_params(); in basic_format()
178 init_params(); in basic_format()
209 void init_params() in init_params() function in boost::aux::basic_format
/third_party/mindspore/mindspore/ops/
Dprimitive.py81 init_params = inspect.getfullargspec(cloned.__init__.decorated_func).args[1:]
83 for name in init_params:
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstnvbaseenc.h115 NV_ENC_INITIALIZE_PARAMS init_params; member
Dgstnvbaseenc.c726 memset (&nvenc->init_params, 0, sizeof (NV_ENC_INITIALIZE_PARAMS)); in gst_nv_base_enc_start()
1649 NV_ENC_INITIALIZE_PARAMS *params = &nvenc->init_params; in gst_nv_base_enc_set_format()
1669 (GST_VIDEO_INFO_WIDTH (info) > nvenc->init_params.maxEncodeWidth || in gst_nv_base_enc_set_format()
1670 GST_VIDEO_INFO_HEIGHT (info) > nvenc->init_params.maxEncodeHeight); in gst_nv_base_enc_set_format()
1687 nvenc->init_params.maxEncodeWidth, nvenc->init_params.maxEncodeHeight, in gst_nv_base_enc_set_format()
1835 reconfigure_params.reInitEncodeParams = nvenc->init_params; in gst_nv_base_enc_set_format()
/third_party/mindspore/mindspore/boost/
Dbase.py68 self.origin_params = opt.init_params["params"]
Dgrad_freeze.py243 … optimizer.init_params['params'])
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dgstwebrtcbin.c6291 GstStructure * init_params) in gst_webrtc_bin_create_data_channel() argument
6308 if (!init_params in gst_webrtc_bin_create_data_channel()
6309 || !gst_structure_get_boolean (init_params, "ordered", &ordered)) in gst_webrtc_bin_create_data_channel()
6311 if (!init_params in gst_webrtc_bin_create_data_channel()
6312 || !gst_structure_get_int (init_params, "max-packet-lifetime", in gst_webrtc_bin_create_data_channel()
6315 if (!init_params in gst_webrtc_bin_create_data_channel()
6316 || !gst_structure_get_int (init_params, "max-retransmits", in gst_webrtc_bin_create_data_channel()
6323 if (!init_params in gst_webrtc_bin_create_data_channel()
6324 || !(protocol = gst_structure_get_string (init_params, "protocol"))) in gst_webrtc_bin_create_data_channel()
6328 if (!init_params in gst_webrtc_bin_create_data_channel()
[all …]
/third_party/mindspore/mindspore/nn/optim/
Doptimizer.py51 … setattr(self, 'init_params', dict({"params": arguments['optimizer'].init_params["params"]}))