Home
last modified time | relevance | path

Searched refs:input_node (Results 1 – 25 of 485) sorted by relevance

12345678910>>...20

/dports/misc/mmdnn/MMdnn-0.3.1/mmdnn/conversion/cntk/
H A Dcntk_graph.py64 for input_node in inputs:
65 if input_node.is_output:
66 input_node = input_node.owner
67 if not input_node.uid in self.layer_map:
68 self.layer_map[input_node.uid] = CntkGraphNode(input_node)
69 self._make_connection(input_node.uid, son_node.uid)
70 self._traverse_graph(input_node)
72 elif input_node.is_input:
73 if not input_node.uid in self.layer_map:
74 self.layer_map[input_node.uid] = CntkGraphNode(input_node)
[all …]
/dports/devel/onetbb/oneTBB-2021.4.0/test/tbb/
H A Dtest_input_node.cpp116 tbb::flow::input_node<T> src(g, my_input_body<T>() ); in test_single_dest()
154 tbb::flow::input_node<T> src_copy(src); in test_single_dest()
268 input_node s1(g, lambda); in test_deduction_guides()
271 input_node s2(g, non_const_lambda); in test_deduction_guides()
274 input_node s3(g, input_body_f); in test_deduction_guides()
277 input_node s4(s3); in test_deduction_guides()
284 input_node s5(precedes(bc), lambda); in test_deduction_guides()
287 input_node s6(precedes(bc), non_const_lambda); in test_deduction_guides()
290 input_node s7(precedes(bc), input_body_f); in test_deduction_guides()
312 input_node<bool> src( in test_follows_and_precedes_api()
[all …]
/dports/math/stanmath/math-4.2.0/lib/tbb_2020.3/src/test/
H A Dtest_input_node.cpp131 tbb::flow::input_node<T> src(g, source_body<T>() ); in test_single_dest()
142 tbb::flow::input_node<T> src3(g, source_body<T>() ); in test_single_dest()
155 tbb::flow::input_node<T> src2(g, source_body<T>() ); in test_single_dest()
168 tbb::flow::input_node<T> src_copy(src); in test_single_dest()
289 input_node s1(g, lambda); in test_deduction_guides()
292 input_node s2(g, non_const_lambda); in test_deduction_guides()
295 input_node s3(g, source_body_f); in test_deduction_guides()
298 input_node s4(s3); in test_deduction_guides()
305 input_node s5(precedes(bc), lambda); in test_deduction_guides()
308 input_node s6(precedes(bc), non_const_lambda); in test_deduction_guides()
[all …]
/dports/devel/tbb/oneTBB-2020.3/src/test/
H A Dtest_input_node.cpp131 tbb::flow::input_node<T> src(g, source_body<T>() ); in test_single_dest()
142 tbb::flow::input_node<T> src3(g, source_body<T>() ); in test_single_dest()
155 tbb::flow::input_node<T> src2(g, source_body<T>() ); in test_single_dest()
168 tbb::flow::input_node<T> src_copy(src); in test_single_dest()
289 input_node s1(g, lambda); in test_deduction_guides()
292 input_node s2(g, non_const_lambda); in test_deduction_guides()
295 input_node s3(g, source_body_f); in test_deduction_guides()
298 input_node s4(s3); in test_deduction_guides()
305 input_node s5(precedes(bc), lambda); in test_deduction_guides()
308 input_node s6(precedes(bc), non_const_lambda); in test_deduction_guides()
[all …]
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/tbb/src/test/
H A Dtest_input_node.cpp131 tbb::flow::input_node<T> src(g, source_body<T>() ); in test_single_dest()
142 tbb::flow::input_node<T> src3(g, source_body<T>() ); in test_single_dest()
155 tbb::flow::input_node<T> src2(g, source_body<T>() ); in test_single_dest()
168 tbb::flow::input_node<T> src_copy(src); in test_single_dest()
289 input_node s1(g, lambda); in test_deduction_guides()
292 input_node s2(g, non_const_lambda); in test_deduction_guides()
295 input_node s3(g, source_body_f); in test_deduction_guides()
298 input_node s4(s3); in test_deduction_guides()
305 input_node s5(precedes(bc), lambda); in test_deduction_guides()
308 input_node s6(precedes(bc), non_const_lambda); in test_deduction_guides()
[all …]
/dports/devel/onetbb/oneTBB-2021.4.0/doc/main/tbb_userguide/
H A Duse_input_node.rst3 Using input_node
7 By default, an ``input_node`` is constructed in the inactive state:
13 template< typename Body > input_node( graph &g, Body body, bool is_active=true )
16 To activate an inactive ``input_node``, you call the node's function
23 input_node< int > src( g, src_body(10), false );
28 All ``input_node`` objects are constructed in the inactive state and usually
33 the ``input_node`` is constructed in the inactive state and activated after
42 input_node< int > src( g, src_body(10), false );
55 In general it is safest to create your ``input_node`` objects in the inactive
61 Some graphs can be constructed safely with ``input_node``s active, allowing
[all …]
H A Duse_limiter_node.rst27 the example below, an ``input_node`` will generate ``M`` big objects. But the
29 at a time, and to prevent the ``input_node`` from generating all ``M`` big
44 input_node< big_object * > s( g, [&]( oneapi::tbb::flow_control& fc ) -> big_object* {
75 The example above prevents the ``input_node`` from generating all ``M`` big
78 reaches 3. When the ``input_node`` sees its message rejected, it stops
83 drops below the threshold, messages begin flowing from the ``input_node``
86 buffered in the ``input_node``.
H A Duse_concurrency_limits.rst30 graph by placing a rejecting function_node downstream of an ``input_node``,
45 input_node< big_object * > s( g, [&]( oneapi::tbb::flow_control& fc ) -> big_object* {
73 the ``input_node``, causing the ``input_node`` to buffer its last created
76 messages from the ``input_node``. At most four big objects will exist
78 ``input_node``.
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/src/nnvm/
H A Damp_infer_unknown.cc52 const ObjectPtr &input_node = node_entry.node; in CheckAndUpdateInferredDtypes() local
53 if (!visited_vars->count(input_node->attrs.name)) { in CheckAndUpdateInferredDtypes()
55 (*visited_vars)[input_node->attrs.name] = result_dtype; in CheckAndUpdateInferredDtypes()
59 auto it = visited_vars->find(input_node->attrs.name); in CheckAndUpdateInferredDtypes()
96 const ObjectPtr &input_node = node_entry.node; in AMPInferUnknown() local
97 if (input_node->is_variable() && in AMPInferUnknown()
114 const ObjectPtr& input_node = node_entry.node; in AMPInferUnknown() local
115 if (!input_node->is_variable()) { in AMPInferUnknown()
123 const ObjectPtr &input_node = node_entry.node; in AMPInferUnknown() local
124 if (input_node->is_variable()) { in AMPInferUnknown()
/dports/misc/mxnet/incubator-mxnet-1.9.0/src/nnvm/
H A Damp_infer_unknown.cc52 const ObjectPtr &input_node = node_entry.node; in CheckAndUpdateInferredDtypes() local
53 if (!visited_vars->count(input_node->attrs.name)) { in CheckAndUpdateInferredDtypes()
55 (*visited_vars)[input_node->attrs.name] = result_dtype; in CheckAndUpdateInferredDtypes()
59 auto it = visited_vars->find(input_node->attrs.name); in CheckAndUpdateInferredDtypes()
96 const ObjectPtr &input_node = node_entry.node; in AMPInferUnknown() local
97 if (input_node->is_variable() && in AMPInferUnknown()
114 const ObjectPtr& input_node = node_entry.node; in AMPInferUnknown() local
115 if (!input_node->is_variable()) { in AMPInferUnknown()
123 const ObjectPtr &input_node = node_entry.node; in AMPInferUnknown() local
124 if (input_node->is_variable()) { in AMPInferUnknown()
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/lrf/
H A Dinput.py28 cid = input_node.get('objid', None)
34 objects = list(self.get_objects(input_node))
38 canvases = [input_node]
39 for x in input_node.itersiblings():
97 name = input_node.get('file', None)
111 self.canvas.image_page(input_node, input_node, output_parent)
131 input_node = deepcopy(input_node)
133 self.render_block(input_node, div)
313 if input_node.tag == 'TextStyle':
314 idx = self.get_text_styles(input_node)
[all …]
/dports/audio/spectmorph/spectmorph-0.5.2/lib/
H A Dsmmorphgridmodule.cc54 input_node.resize (width); in set_config()
58 input_node[x].resize (height); in set_config()
70 input_node[x][y].mod = NULL; in set_config()
78 input_node[x][y].has_source = true; in set_config()
82 input_node[x][y].has_source = false; in set_config()
85 input_node[x][y].delta_db = node.delta_db; in set_config()
111 add_dependency (input_node[x][y].mod); in set_config()
149 if (input_node.mod) in get_normalized_block()
151 source = input_node.mod->source(); in get_normalized_block()
153 else if (input_node.has_source) in get_normalized_block()
[all …]
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/contrib/target/
H A Donnx.py264 input_node = input_node[0]
301 input_node = input_node[0]
302 shape = input_node["types"][0].shape
380 input_node = input_node[0]
381 shape = input_node["types"][0].shape
416 input_node = input_node[0]
417 shape = input_node["types"][0].shape
474 input_node = input_node[0]
564 input_node = input_node[0]
593 input_node = input_node[0]
[all …]
/dports/misc/mxnet/incubator-mxnet-1.9.0/perl-package/AI-MXNet/lib/AI/MXNet/
H A DVisualization.pm135 my $input_node = $nodes->[$item->[0]];
136 my $input_name = $input_node->{name};
137 if($input_node->{op} ne 'null' or exists $heads{ $item->[0] })
143 $key .= '_output' if $input_node->{op} ne 'null';
410 my $input_node = $nodes->[$item->[0]];
411 my $input_name = $input_node->{name};
419 $key .= '_output' if $input_node->{op} ne 'null';
420 if($input_node->{op} ne 'null' and exists $input_node->{attrs})
422 … if(ref $input_node->{attrs} eq 'HASH' and exists $input_node->{attrs}{num_outputs})
424 $key .= ($input_node->{attrs}{num_outputs} - 1);
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/perl-package/AI-MXNet/lib/AI/MXNet/
H A DVisualization.pm135 my $input_node = $nodes->[$item->[0]];
136 my $input_name = $input_node->{name};
137 if($input_node->{op} ne 'null' or exists $heads{ $item->[0] })
143 $key .= '_output' if $input_node->{op} ne 'null';
410 my $input_node = $nodes->[$item->[0]];
411 my $input_name = $input_node->{name};
419 $key .= '_output' if $input_node->{op} ne 'null';
420 if($input_node->{op} ne 'null' and exists $input_node->{attrs})
422 … if(ref $input_node->{attrs} eq 'HASH' and exists $input_node->{attrs}{num_outputs})
424 $key .= ($input_node->{attrs}{num_outputs} - 1);
/dports/devel/onetbb/oneTBB-2021.4.0/test/conformance/
H A Dconformance_input_node.cpp93 oneapi::tbb::flow::input_node<int> node1(g, fun); in test_input_body()
109 oneapi::tbb::flow::input_node node1(g, fun); in test_deduction_guides()
118 oneapi::tbb::flow::input_node<int> source(g, fun); in test_buffering()
135 oneapi::tbb::flow::input_node<int> node1(g, fun); in test_forwarding()
153 …CHECK_MESSAGE( (std::is_base_of<graph_node, input_node<O>>::value), "input_node should be derived … in test_inheritance()
154 …CHECK_MESSAGE( (std::is_base_of<sender<O>, input_node<O>>::value), "input_node should be derived f… in test_inheritance()
163 input_node<int> fn(g, b); in test_copies()
165 CopyCounterBody<int> b2 = copy_body<CopyCounterBody<int>, input_node<int>>(fn); in test_copies()
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/rtf/
H A Dinput.py18 def execute(self, context, self_node, input_node, output_parent): argument
21 if input_node.get(x, None) == 'true':
24 if input_node.get('underlined', 'false') != 'false':
26 fs = input_node.get('font-size', False)
31 fc = input_node.get('font-color', False)
/dports/misc/mxnet/incubator-mxnet-1.9.0/python/mxnet/
H A Dvisualization.py134 input_node = nodes[item[0]]
135 input_name = input_node["name"]
140 if input_node["op"] != "null":
391 input_node = nodes[item[0]]
392 input_name = input_node["name"]
397 if input_node["op"] != "null":
399 if "attrs" in input_node:
400 params = input_node["attrs"]
412 if input_node["op"] != "null":
414 if "attrs" in input_node:
[all …]
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/python/mxnet/
H A Dvisualization.py134 input_node = nodes[item[0]]
135 input_name = input_node["name"]
140 if input_node["op"] != "null":
391 input_node = nodes[item[0]]
392 input_name = input_node["name"]
397 if input_node["op"] != "null":
399 if "attrs" in input_node:
400 params = input_node["attrs"]
412 if input_node["op"] != "null":
414 if "attrs" in input_node:
[all …]
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_scene_gltf2/blender/exp/
H A Dgltf2_blender_gather_texture_info.py139 input_node = blender_shader_node.inputs['Vector'].links[0].from_node
141 if isinstance(input_node, bpy.types.ShaderNodeMapping):
143 if len(input_node.inputs['Vector'].links) == 0:
146 input_node = input_node.inputs['Vector'].links[0].from_node
148 if not isinstance(input_node, bpy.types.ShaderNodeUVMap):
151 if input_node.uv_map == '':
156 texCoordIndex = blender_mesh.uv_layers.find(input_node.uv_map)
/dports/misc/mmdnn/MMdnn-0.3.1/mmdnn/conversion/tensorflow/
H A Dtensorflow_frozenparser.py237 input_node = self.get_parent(source_node.name, [0])
238 IR_node.input.append(input_node.real_name)
300 input_node = self.get_parent(output_node.name, [0, 0])
301 IR_node.input.append(input_node.real_name)
334 input_node = self.get_parent(output_node.name, [0, 0])
335 IR_node.input.append(input_node.real_name)
466 input_node = self.get_parent(source_node.name, [0])
552 input_node = self.src_graph.get_parent(source_node.name, [1])
627 input_node = self.src_graph.get_parent(source_node.name, [1])
998 tensor_content = input_node.get_attr('value')
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/sound/
H A Ddiscrete.c212 …if(node->input_node[loop3] && (node->input_node[loop3])->node!=NODE_NC) node->input[loop3]=(node-> in discrete_stream_update_stereo()
244 …if(node->input_node[loop3] && (node->input_node[loop3])->node!=NODE_NC) node->input[loop3]=(node-> in discrete_stream_update_mono()
277 …if(node->input_node[loop2] && (node->input_node[loop2])->node!=NODE_NC) node->input[loop2]=(node-> in discrete_sh_reset()
374 node_list[loop].input_node[loop2]=NULL; in discrete_sh_start()
417 node_list[loop].input_node[loop2]=find_node(intf[loop].input_node[loop2]); in discrete_sh_start()
425 …if(node_list[loop].input_node[loop2]==NULL && intf[loop].input_node[loop2]>=NODE_START && intf[loo… in discrete_sh_start()
427 … non existant node NODE_%02d\n",node_list[loop].node-NODE_00,intf[loop].input_node[loop2]-NODE_00); in discrete_sh_start()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/exported/
H A Dweb_node_test.cc80 WebNode input_node(GetDocument().getElementById("focusable")); in TEST_F() local
81 EXPECT_FALSE(input_node.IsFocusable()); in TEST_F()
91 EXPECT_TRUE(input_node.IsNull()); in TEST_F()
92 input_node = GetDocument().getElementById("focusable"); in TEST_F()
94 EXPECT_TRUE(input_node.IsFocusable()); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/exported/
H A Dweb_node_test.cc80 WebNode input_node(GetDocument().getElementById("focusable")); in TEST_F() local
81 EXPECT_FALSE(input_node.IsFocusable()); in TEST_F()
91 EXPECT_TRUE(input_node.IsNull()); in TEST_F()
92 input_node = GetDocument().getElementById("focusable"); in TEST_F()
94 EXPECT_TRUE(input_node.IsFocusable()); in TEST_F()
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-analog/python/analog/
H A Dstandard_squelch.py35 self.input_node = blocks.add_const_ff(0) # FIXME kludge
53 self.connect(self, self.input_node)
54 self.connect(self.input_node, (self.squelch_mult, 0))
56 self.connect(self.input_node,self.low_iir)
62 self.connect(self.input_node,self.hi_iir)

12345678910>>...20