Skip to content
Snippets Groups Projects

feat_operator_convtranspose

Merged Grégoire Kubler requested to merge feat_operator_convtranspose into dev
1 file
+ 6
7
Compare changes
  • Side-by-side
  • Inline
@@ -20,19 +20,17 @@
#include <memory>
#include "aidge/data/Tensor.hpp"
#include "aidge/filler/Filler.hpp"
#include "aidge/operator/Expand.hpp"
#include "aidge/backend/cpu.hpp"
using std::shared_ptr;
namespace Aidge {
using namespace Aidge;
using std::shared_ptr;
static void setupTestExpand(shared_ptr<Tensor> inputData,
shared_ptr<Tensor> inputShape,
shared_ptr<OperatorTensor> &op,
shared_ptr<Tensor> &expectedOutput) {
shared_ptr<Tensor> inputShape,
shared_ptr<OperatorTensor> &op,
shared_ptr<Tensor> &expectedOutput) {
op->getOutput(0)->setDataType(inputData->dataType());
@@ -111,3 +109,4 @@ TEST_CASE("[cpu/operator] Expand(forward)", "[Expand][CPU]") {
SECTION("N-Dim to N-Dim") {}
auto inputData = std::shared_ptr<Tensor>();
}
} // namespace Aidge
Loading