Searched defs:new_input (Results 1 - 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dconv_canonicalization.cc73 HloInstruction* new_input = module->entry_computation()->AddInstruction( local
132 HloInstruction::CreateConvolve(new_conv_shape, new_input, new_kernel,
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler.c138 * register will source new_input instead.
140 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input) argument
152 inst->U.I.SrcReg[i].File = new_input.File;
153 inst->U.I.SrcReg[i].Index = new_input.Index;
154 inst->U.I.SrcReg[i].Swizzle = combine_swizzles(new_input.Swizzle, inst->U.I.SrcReg[i].Swizzle);
156 inst->U.I.SrcReg[i].Negate ^= new_input.Negate;
157 inst->U.I.SrcReg[i].Abs = new_input.Abs;
160 c->Program.InputsRead |= 1 << new_input.Index;
237 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input, argument
247 c->Program.InputsRead |= 1 << new_input;
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dpad_insertion.cc154 HloInstruction* new_input = MaybePaddedAndSlicedInput( local
181 auto new_conv = CreateCudnnConvForward(old_conv_shape, new_input, new_kernel,
/external/tensorflow/tensorflow/core/grappler/optimizers/
H A Ddependency_optimizer.cc341 string new_input; local
347 new_input = input_to_forward;
348 node_map_->UpdateInput(consumer->name(), old_input, new_input);
349 consumer->set_input(j, new_input);
352 new_input = AsControlDependency(NodeName(input_to_forward));
353 node_map_->UpdateInput(consumer->name(), old_input, new_input);
354 consumer->set_input(j, new_input);
H A Darithmetic_optimizer.cc175 bool MaybeAddControlInput(const string& new_input, NodeDef* node, argument
179 if (input == new_input || AsControlDependency(input) == new_input) {
186 ConstantFolding::AddControlDependency(new_input, graph, node_map);
188 node_map->AddOutput(NodeName(new_input), node->name());
H A Dconstant_folding.cc131 // Add new_input as a control input to node if it does not already depend on it.
134 bool MaybeAddControlInput(const string& new_input, NodeDef* node, argument
138 if (input == new_input || AsControlDependency(input) == new_input) {
145 ConstantFolding::AddControlDependency(new_input, graph, node_map);
147 node_map->AddOutput(NodeName(new_input), node->name());
/external/tensorflow/tensorflow/core/graph/
H A Dgraph.cc440 const string new_input = strings::StrCat("^", source->name()); local
443 if (input == new_input) {
450 dest->props_->node_def.add_input(new_input);
H A Dgraph_constructor.cc691 TensorId new_input = iter->second; local
692 if (new_input.second == Graph::kControlSlot) {
693 // Check if we've already remapped a different input to new_input, and if
695 if (control_inputs.count(new_input) > 0) {
699 control_inputs.insert(new_input);
701 node_def->set_input(i, new_input.ToString());
/external/v8/src/compiler/
H A Draw-machine-assembler.cc319 void RawMachineAssembler::AppendPhiInput(Node* phi, Node* new_input) { argument
322 phi->InsertInput(zone(), phi->InputCount() - 1, new_input);
/external/adhd/cras/src/server/
H A Dcras_alsa_io.c1203 static struct alsa_input_node *new_input(struct alsa_io *aio, function
1269 new_input(aio, cras_input, node_name);
1271 new_input(aio, cras_input, ctl_name);
1456 node = new_input(aio, cras_input, jack_name);
2014 new_input(aio, NULL, INTERNAL_MICROPHONE);
2016 new_input(aio, NULL, KEYBOARD_MIC);
2018 new_input(aio, NULL, HOTWORD_DEV);
2020 new_input(aio, NULL, DEFAULT);
2074 input_node = new_input(aio, control, section->name);

Completed in 305 milliseconds