This commit is contained in:
Shikhar Jaiswal 2020-07-07 20:51:07 +05:30 коммит произвёл GitHub
Родитель db7ead2866
Коммит fdcd379661
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -2,7 +2,7 @@
// Licensed under the MIT license.
#ifndef __FASTGRNN_H__
#define __FASRGRNN_H__
#define __FASTGRNN_H__
#define ERR_PRECOMP_NOT_INIT -1
#define ERR_TEMPLRW_NOT_INIT -2

Просмотреть файл

@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#ifndef __QUANTIZED_DATATYPES_H__
#define __QUANTIZED_DATATYPES_H__
#include <stdint.h>
// Macro for input type.
@ -19,3 +22,5 @@ typedef int32_t INTM_T;
#define INT_TMAX 32767
// Macro for min value of input type.
#define INT_TMIN -32768
#endif

Просмотреть файл

@ -2,7 +2,7 @@
// Licensed under the MIT license.
#ifndef __QUANTIZED_FASTGRNN_H__
#define __QUANTIZED_FASRGRNN_H__
#define __QUANTIZED_FASTGRNN_H__
#define ERR_PRECOMP_NOT_INIT -1
#define ERR_TEMPLRW_NOT_INIT -2