leon
leon
**Issue:** The implementation of Timer does not consider the time spent executing the callback itself. For example, if a timed task is scheduled to execute every 1 second, and each...
### OpenVINO Version 2024.0.0 ### Operating System macOS Systems for Apple Silicon ### Device used for inference CPU ### Framework ONNX ### Model used _No response_ ### Issue description Platform:...
Frequency is not assigned in the `cpuinfo_arm_inux_int` function from the `cpuinfo/src/arm/Linux/int. c` file, causing the inability to obtain frequency through `cpuinfo_cluster` or `cpuinfo_core`. Is this intentional or is it missing?
输出长日志崩溃
vsnprintf用法貌似不对 ``` #include #include int vsnprintf(char *str, size_t size, const char *format, va_list ap); ``` 1. 如果输出的字符串长度小于 size,返回实际写入的字符数(不包括字符串结束符 '\0')。 2. 如果输出的字符串长度大于等于 size,返回如果有足够空间时本应写入的字符数(不包括字符串结束符 '\0')。这意味着返回值可能会大于 size - 1。 hlog.c下面这段代码没有考虑第二种长度超出size的情况,造成len+=..后len值错误 ``` case 's':...