未验证 提交 9d1f67e4 编写于 作者: A Artem Tsvetkov 提交者: GitHub

Added support for timer from embARC MLI Library 2.0 for ARC (#232)

上级 45c80c96
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
// ARC Platform micro timer implementation.
// Use default timer of arc_timer API delivered with MetaWare toolkit.
#include "tensorflow/lite/micro/micro_time.h"
#include <arc/arc_timer.h>
#include <limits>
namespace tflite {
int32_t ticks_per_second() {
const unsigned long clocs_per_sec_real = _timer_clocks_per_sec();
if (clocs_per_sec_real <
static_cast<unsigned long>(std::numeric_limits<int32_t>::max()))
return static_cast<int32_t>(clocs_per_sec_real);
else
return std::numeric_limits<int32_t>::max();
}
int32_t GetCurrentTimeTicks() {
const unsigned ticks_real = _timer_default_read();
const int32_t ticks_cast = static_cast<int32_t>(ticks_real & 0x7fffffff);
return ticks_cast;
}
} // namespace tflite
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/micro/system_setup.h"
#include <arc/arc_timer.h>
namespace tflite {
// Only the timer need to be reset for the custom arc platform
void InitializeTarget() { _timer_default_reset(); }
} // namespace tflite
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册