| # Copyright 2025 Google LLC |
| # |
| # 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. |
| |
| load("//rules:coco_tb.bzl", "cocotb_test_suite") |
| load("//rules:kelvin_v2.bzl", "kelvin_v2_binary") |
| load("//rules:utils.bzl", "generate_cc_arrays") |
| load( |
| "//tests/cocotb:build_defs.bzl", |
| "VCS_BUILD_ARGS", |
| "VCS_DEFINES", |
| "VCS_TEST_ARGS", |
| ) |
| |
| # BEGIN_TESTCASES_FOR_tutorial |
| TUTORIAL_TESTCASES = [ |
| "core_mini_axi_tutorial", |
| ] |
| # END_TESTCASES_FOR_tutorial |
| |
| # BEGIN_TESTCASES_FOR_hello_world_float_core_mini_axi |
| HELLO_WORLD_TESTCASES = [ |
| "core_mini_axi_tutorial", |
| ] |
| # END_TESTCASES_FOR_hello_world_float_core_mini_axi |
| |
| cocotb_test_suite( |
| name = "tutorial", |
| simulators = [ |
| "verilator", |
| "vcs", |
| ], |
| testcases = TUTORIAL_TESTCASES, |
| testcases_vname = "TUTORIAL_TESTCASES", |
| tests_kwargs = { |
| "waves": True, |
| "hdl_toplevel": "CoreMiniAxi", |
| "seed": "42", |
| "test_module": ["tutorial.py"], |
| "deps": [ |
| "//kelvin_test_utils:core_mini_axi_sim_interface", |
| "@rules_python//python/runfiles", |
| ], |
| "data": glob(["**/*.elf"]), |
| }, |
| vcs_build_args = VCS_BUILD_ARGS, |
| vcs_data = glob(["**/*.elf"]) + [ |
| "//tests/cocotb:coverage_exclude.cfg", |
| ], |
| vcs_defines = VCS_DEFINES, |
| vcs_test_args = VCS_TEST_ARGS, |
| vcs_verilog_sources = ["//hdl/chisel/src/kelvin:core_mini_axi_cc_library_verilog"], |
| verilator_model = "//tests/cocotb:core_mini_axi_model", |
| ) |
| |
| cocotb_test_suite( |
| name = "hello_world_float_core_mini_axi", |
| simulators = [ |
| "verilator", |
| "vcs", |
| ], |
| testcases = HELLO_WORLD_TESTCASES, |
| testcases_vname = "HELLO_WORLD_TESTCASES", |
| tests_kwargs = { |
| "waves": True, |
| "hdl_toplevel": "CoreMiniAxi", |
| "seed": "42", |
| "test_module": ["hello_world_float_core_mini_axi.py"], |
| "deps": [ |
| "//kelvin_test_utils:core_mini_axi_sim_interface", |
| "@bazel_tools//tools/python/runfiles", |
| ], |
| "data": ["//examples:kelvin_v2_hello_world_add_floats.elf"], |
| }, |
| vcs_build_args = VCS_BUILD_ARGS, |
| vcs_data = [ |
| "//examples:kelvin_v2_hello_world_add_floats.elf", |
| "//tests/cocotb:coverage_exclude.cfg", |
| ], |
| vcs_defines = VCS_DEFINES, |
| vcs_test_args = VCS_TEST_ARGS, |
| vcs_verilog_sources = ["//hdl/chisel/src/kelvin:core_mini_axi_cc_library_verilog"], |
| verilator_model = "//tests/cocotb:core_mini_axi_model", |
| ) |
| |
| kelvin_v2_binary( |
| name = "kelvin_v2_program", |
| srcs = ["program.cc"], |
| ) |
| |
| kelvin_v2_binary( |
| name = "tflite_micro_test", |
| srcs = [ |
| "hello_world_tflite_cc", |
| "tflite_micro_test.cc", |
| ], |
| hdrs = ["hello_world_tflite.h"], |
| linker_script = "@kelvin_hw//toolchain:kelvin_tcm_highmem.ld", |
| deps = [ |
| "@tflite_micro//tensorflow/lite/micro:micro_framework", |
| "@tflite_micro//tensorflow/lite/micro:micro_log", |
| "@tflite_micro//tensorflow/lite/micro:micro_profiler", |
| "@tflite_micro//tensorflow/lite/micro:op_resolvers", |
| "@tflite_micro//tensorflow/lite/micro:system_setup", |
| ], |
| ) |
| |
| generate_cc_arrays( |
| name = "hello_world_tflite_cc", |
| src = "@tflite_micro//tensorflow/lite/micro/examples/hello_world/models:hello_world_int8.tflite", |
| out = "hello_world_tflite.cc", |
| ) |
| |
| generate_cc_arrays( |
| name = "hello_world_tflite_h", |
| src = "@tflite_micro//tensorflow/lite/micro/examples/hello_world/models:hello_world_int8.tflite", |
| out = "hello_world_tflite.h", |
| ) |