MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / TinyShapesBroadcastInplace

Class TinyShapesBroadcastInplace

tests/datasets/ShapeDatasets.h:261–277  ·  view source on GitHub ↗

Data set containing pairs of tiny tensor shapes that are broadcast compatible and can do in_place calculation. */

Source from the content-addressed store, hash-verified

259};
260/** Data set containing pairs of tiny tensor shapes that are broadcast compatible and can do in_place calculation. */
261class TinyShapesBroadcastInplace final : public framework::dataset::ZipDataset<ShapeDataset, ShapeDataset>
262{
263public:
264 TinyShapesBroadcastInplace()
265 : ZipDataset<ShapeDataset, ShapeDataset>(ShapeDataset("Shape0",
266 {
267 TensorShape{9U},
268 TensorShape{10U, 2U, 14U, 2U},
269 }),
270 ShapeDataset("Shape1",
271 {
272 TensorShape{9U, 1U, 9U},
273 TensorShape{10U},
274 }))
275 {
276 }
277};
278/** Data set containing pairs of small tensor shapes that are broadcast compatible. */
279class SmallShapesBroadcast final : public framework::dataset::ZipDataset<ShapeDataset, ShapeDataset>
280{

Calls

no outgoing calls

Tested by

no test coverage detected