MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / XAddY

Function XAddY

tensorflow/core/framework/function_testlib.cc:262–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

260}
261
262FunctionDef XAddY() {
263 return FDH::Define(
264 // Name
265 "XAddY",
266 // Args
267 {"x: T", "y: T"},
268 // Return values
269 {"z: T"},
270 // Attr def
271 {"T: {float, double, int32, int64}"},
272 // Nodes
273 {
274 {{"z"}, "Add", {"x", "y"}, {{"T", "$T"}}},
275 });
276}
277
278FunctionDef XTimesTwoInt32() {
279 const Tensor kTwo = test::AsScalar<int64>(2);

Callers 7

TestCase2Function · 0.85
TestCase3Function · 0.85
InvalidOutputTypesFunction · 0.85
InvalidOutputShapesFunction · 0.85
InvalidInputsFunction · 0.85
TestCase1Function · 0.85
TestCase3Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected