mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
- Upgraded the Bazel BuildTool to the latest version (8.2.1). - Updated the `tflm-ci` Docker image and pushed the new tag (0.6.1) to the `ghcr.io/tflm-bot/tflm-ci registry`. - Updated the WORKSPACE to load `rules_cc` and `rules_shell` explicitly - Ran `buildifier` to ensure all BUILD files to have all the fixes. BUG=Clean-up
18 lines
401 B
Text
18 lines
401 B
Text
# Test data for signal tests. This is used to store large arrays which would make tests less readable.
|
|
|
|
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
|
|
|
package(
|
|
default_visibility = ["//signal/micro/kernels:__subpackages__"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "fft_test_data",
|
|
srcs = [
|
|
"fft_test_data.cc",
|
|
],
|
|
hdrs = [
|
|
"fft_test_data.h",
|
|
],
|
|
)
|