Modify quantize_param_t double to float

This commit is contained in:
zhaozhongxiang 2019-01-30 21:06:25 +08:00
parent ad9855d5c8
commit 84c3a244c0
1 changed files with 2 additions and 2 deletions

View File

@ -351,8 +351,8 @@ typedef struct
typedef struct _quantize_param
{
double scale;
double bias;
float scale;
float bias;
} quantize_param_t;
extern volatile kpu_config_t *const kpu;