Home
last modified time | relevance | path

Searched refs:replaceAllUsesAfterNodeWith (Results 1 – 15 of 15) sorted by relevance

/external/pytorch/torch/csrc/jit/passes/
Dremove_inplace_ops.cpp71 node->inputs()[0]->replaceAllUsesAfterNodeWith( in RemoveInplaceOps()
Dremove_mutation.cpp277 mutated_value->replaceAllUsesAfterNodeWith(node, new_node->output()); in RemoveTensorMutation()
Dvulkan_rewrite.cpp152 input->replaceAllUsesAfterNodeWith( in transferInputOutputBackends()
Dspecialize_autogradzero.cpp67 i->replaceAllUsesAfterNodeWith(opt_pn, opt_pn->output()); in insertProfileNodesForSpecializeAutogradZero()
Dfrozen_ops_to_mkldnn.cpp744 v->replaceAllUsesAfterNodeWith(from_mkldnn, from_mkldnn->output()); in ComputeSubgraphInMKLDNN()
/external/pytorch/torch/csrc/jit/passes/quantization/
Dinsert_quant_dequant.cpp182 scalar_value->replaceAllUsesAfterNodeWith(tensor_node, tensor_output); in insertScalarToTensor()
453 original_val->replaceAllUsesAfterNodeWith(dequant, dequant->output()); in insertQuantizationOps()
489 original_val->replaceAllUsesAfterNodeWith(dequant, dequant->output()); in insertQuantizationOps()
1212 original_output->replaceAllUsesAfterNodeWith(quant, quantized_output); in propagateQParams()
1220 output->replaceAllUsesAfterNodeWith(item, scalar); in propagateQParams()
/external/pytorch/torch/csrc/jit/passes/onnx/
Dscalar_type_analysis.cpp374 out->replaceAllUsesAfterNodeWith(cast_node, cast_node->output()); in RecoverScalarTypeForOutput()
Dfixup_onnx_controlflow.cpp214 block_output->replaceAllUsesAfterNodeWith(opt_node, opt_node->output()); in ReplaceBlockOutputWithOptional()
Dremove_inplace_ops_for_onnx.cpp361 input->replaceAllUsesAfterNodeWith(node, newNode->output()); in PrepareForRemoveMutations()
Dshape_type_inference.cpp2452 graph_output->replaceAllUsesAfterNodeWith(opt_node, opt_node->output()); in ReplaceGraphOutputNoneWithOptional()
/external/pytorch/torch/csrc/jit/tensorexpr/
Dgraph_opt.cpp469 v->replaceAllUsesAfterNodeWith(deq, deq->output()); in dequantizeResults()
/external/pytorch/torch/csrc/jit/python/
Dpython_ir.cpp529 .VS(replaceAllUsesAfterNodeWith) in initPythonIRBindings()
/external/pytorch/torch/csrc/jit/ir/
Dir.h282 TORCH_API void replaceAllUsesAfterNodeWith(const Node* node, Value* newValue);
Dir.cpp928 void Value::replaceAllUsesAfterNodeWith(const Node* node, Value* newValue) { in replaceAllUsesAfterNodeWith() function in torch::jit::Value
/external/pytorch/torch/_C/
D__init__.pyi.in764 def replaceAllUsesAfterNodeWith(self, node: Node, val: Value) -> None: ...