MCPcopy Create free account
hub / github.com/PaddlePaddle/Paddle / EmplaceBackOutputsWithoutSetRange

Method EmplaceBackOutputsWithoutSetRange

paddle/phi/core/kernel_context.cc:69–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void KernelContext::EmplaceBackOutputsWithoutSetRange(
70 paddle::small_vector<TensorBase*> outputs) {
71 outputs_.insert(outputs_.end(),
72 std::make_move_iterator(outputs.begin()),
73 std::make_move_iterator(outputs.end()));
74}
75
76void KernelContext::EmplaceBackAttr(Attribute attr) {
77 attrs_.emplace_back(std::move(attr));

Callers

nothing calls this directly

Calls 3

insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected