mirror of https://github.com/alibaba/MNN.git
30 lines
632 B
C++
30 lines
632 B
C++
//
|
|
// PostConverter.hpp
|
|
// MNNConverter
|
|
//
|
|
// Created by MNN on 2019/01/31.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef OPTIMIZER_HPP
|
|
#define OPTIMIZER_HPP
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <MNN/MNNDefine.h>
|
|
#include "MNN_generated.h"
|
|
#include "flatbuffers/idl.h"
|
|
#include "flatbuffers/minireflect.h"
|
|
#include "flatbuffers/util.h"
|
|
#include "config.hpp"
|
|
|
|
/**
|
|
*@brief optimize MNN net
|
|
*/
|
|
MNN_PUBLIC std::unique_ptr<MNN::NetT> optimizeNet(std::unique_ptr<MNN::NetT>& netT, bool forTraining, modelConfig& config);
|
|
|
|
#endif // OPTIMIZER_HPP
|