MNN/source/backend/cpu/compute/ResizeFunction.h

27 lines
568 B
C
Raw Normal View History

2019-04-17 10:49:11 +08:00
//
// ResizeFunction.h
// MNN
//
// Created by MNN on 2018/07/23.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef ResizeFunction_h
#define ResizeFunction_h
#include <stdio.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void MNNCubicSampleC4(const float* src, float* dst, int32_t* position, const float* factor, size_t number);
void MNNCubicLineC4(float* dst, const float* A, const float* B, const float* C, const float* D, float* t,
size_t number);
#ifdef __cplusplus
}
#endif
#endif /* ResizeFunction_hpp */