25 lines
452 B
C
25 lines
452 B
C
//
|
|
// Created by xiangzhou on 11/9/23.
|
|
//
|
|
|
|
|
|
#pragma once
|
|
#include "C_Tensor.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct DepthToSpaceAttribute {
|
|
// user
|
|
const char* name_;
|
|
uint32_t blocksize_;
|
|
const char *mode_;
|
|
};
|
|
typedef struct DepthToSpaceAttribute DepthToSpaceAttribute;
|
|
typedef struct DepthToSpaceAttribute SpaceToDepthAttribute;
|
|
CREATE_DECL_RUN_FUN(DepthToSpace)
|
|
CREATE_DECL_RUN_FUN(SpaceToDepth)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |