Home
last modified time | relevance | path

Searched refs:new_source (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/python/autograph/pyct/
Dparser.py111 new_source = '\n'.join(lines)
114 module_node = parse_str(new_source)
115 return module_node.body[0], new_source, module_node
120 ' source to:\n{}\nBut that did not work.'.format(new_source))
/external/tensorflow/tensorflow/compiler/xla/service/
Dindexed_array_analysis.cc490 Array* const new_source, in ReshapeToRemoveDegenerateDims()
517 new_source, new_indices, new_source_dim, in ReshapeToRemoveDegenerateDims()
592 Array* const new_source, in ReshapeToAddDegenerateDims()
595 new_source, operand->indices(), new_source_dim, in ReshapeToAddDegenerateDims()
939 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForElementwiseBinaryOp() local
941 new_source, scalar_indexed_const->indices(), in ComputeArrayForElementwiseBinaryOp()
963 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForElementwiseUnaryOp() local
965 new_source, scalar_indexed_const->indices(), in ComputeArrayForElementwiseUnaryOp()
1060 ConstantArray* new_source = Construct<ConstantArray>(literal_for_new_source); in ComputeArrayForDotWithIndexedLhs() local
1062 new_source, lhs->indices(), new_source_dim, in ComputeArrayForDotWithIndexedLhs()
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dmerge_return_pass.h278 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp223 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
225 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
228 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dmerge_return_pass.h282 void UpdatePhiNodes(BasicBlock* new_source, BasicBlock* target);
Dmerge_return_pass.cpp223 void MergeReturnPass::UpdatePhiNodes(BasicBlock* new_source, in UpdatePhiNodes() argument
225 target->ForEachPhiInst([this, new_source](Instruction* inst) { in UpdatePhiNodes()
228 inst->AddOperand({SPV_OPERAND_TYPE_ID, {new_source->id()}}); in UpdatePhiNodes()
/external/v8/src/debug/
Dliveedit.cc1045 Handle<String> new_source, bool preview, in PatchScript() argument
1050 new_source, &diffs); in PatchScript()
1061 new_script->set_source(*new_source); in PatchScript()
/external/v8/src/runtime/
Druntime-debug.cc779 CONVERT_ARG_HANDLE_CHECKED(String, new_source, 1); in RUNTIME_FUNCTION()
784 LiveEdit::PatchScript(isolate, script, new_source, false, &result); in RUNTIME_FUNCTION()
/external/v8/src/torque/
Dimplementation-visitor.cc1065 std::string new_source(module->source()); in GenerateImplementation() local
1070 ReplaceFileContentsIfDifferent(source_file_name, new_source); in GenerateImplementation()