MNN/test/TestUtils.cpp

51 lines
1.2 KiB
C++
Raw Normal View History

2019-04-17 10:49:11 +08:00
//
// TestUtils.cpp
// MNN
//
// Created by MNN on 2019/01/15.
// Copyright © 2018, Alibaba Group Holding Limited
//
#include "TestUtils.h"
2020-11-05 16:41:56 +08:00
#include <MNN/MNNDefine.h>
2019-12-27 22:16:57 +08:00
#include "core/Macro.h"
2020-11-05 16:41:56 +08:00
#include "core/Session.hpp"
2019-12-27 22:16:57 +08:00
#include <MNN/MNNDefine.h>
2020-11-05 16:41:56 +08:00
#include <random>
#include <vector>
#include <MNN/expr/Expr.hpp>
#include "core/TensorUtils.hpp"
2019-04-17 10:49:11 +08:00
using namespace MNN;
Session *createSession(MNN::Interpreter *net, MNNForwardType backend) {
ScheduleConfig config;
config.type = backend;
return net->createSession(config);
}
#if defined(__APPLE__)
void dispatchMetal(std::function<void(MNNForwardType)> payload, MNNForwardType backend);
#endif
void dispatch(std::function<void(MNNForwardType)> payload) {
for (int i = 0; i < MNN_FORWARD_ALL; i++) {
MNNForwardType type = (MNNForwardType)i;
2020-11-05 16:41:56 +08:00
if (MNNGetExtraRuntimeCreator(type))
2019-04-17 10:49:11 +08:00
dispatch(payload, type);
}
}
void dispatch(std::function<void(MNNForwardType)> payload, MNNForwardType backend) {
switch (backend) {
#if defined(__APPLE__)
case MNN_FORWARD_METAL:
dispatchMetal(payload, backend);
break;
#endif
default:
payload(backend);
break;
}
}