Data set containing pairs of tiny tensor shapes that are broadcast compatible and can do in_place calculation. */
| 259 | }; |
| 260 | /** Data set containing pairs of tiny tensor shapes that are broadcast compatible and can do in_place calculation. */ |
| 261 | class TinyShapesBroadcastInplace final : public framework::dataset::ZipDataset<ShapeDataset, ShapeDataset> |
| 262 | { |
| 263 | public: |
| 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. */ |
| 279 | class SmallShapesBroadcast final : public framework::dataset::ZipDataset<ShapeDataset, ShapeDataset> |
| 280 | { |
no outgoing calls
no test coverage detected