aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/ShapeDatasets.h
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2020-06-17 16:08:10 +0000
committerMichele Di Giorgio <michele.digiorgio@arm.com>2020-06-18 10:45:09 +0000
commit19023835fa5a73dea2823edf667c711b03bc5060 (patch)
treedc2ba5a2e632a6e3c55def35bb7e0a89a7b6b625 /tests/datasets/ShapeDatasets.h
parent350099ea9868aa6ec84d082fe6d5962fafc86aa4 (diff)
downloadComputeLibrary-19023835fa5a73dea2823edf667c711b03bc5060.tar.gz
Revert "COMPMID-3480: Perform in-place computations in NEArithmeticAdditionKernel"
This reverts commit 4a61653202afb018f4f259d3c144a735d73f0a20. Reason for revert: We will allow in-place computations by providing the same input1 (or input2) as output, thus avoiding changes in the interface. Change-Id: I7c8669e207e15731dc26dc366150bf960508a879 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3035 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets/ShapeDatasets.h')
-rw-r--r--tests/datasets/ShapeDatasets.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 0ea8091258..087342d3b8 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -241,30 +241,6 @@ public:
}
};
-/** Data set containing pairs of small tensor shapes that are broadcast compatible for in-place computations.
- * When doing in-place computations, only the second input can be broadcast.
- */
-class SmallShapesBroadcastInPlace final : public framework::dataset::ZipDataset<ShapeDataset, ShapeDataset>
-{
-public:
- SmallShapesBroadcastInPlace()
- : ZipDataset<ShapeDataset, ShapeDataset>(
- ShapeDataset("Shape0",
- {
- TensorShape{ 9U, 9U, 3U, 4U },
- TensorShape{ 27U, 13U, 2U, 4U },
- TensorShape{ 1U, 16U, 10U, 2U, 128U },
- }),
- ShapeDataset("Shape1",
- {
- TensorShape{ 9U, 1U, 3U },
- TensorShape{ 1U },
- TensorShape{ 1U, 1U, 1U, 1U, 128U },
- }))
- {
- }
-};
-
/** Data set containing medium tensor shapes. */
class MediumShapes final : public ShapeDataset
{