Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Test
shell: bash
run: |
tensorflow/lite/micro/tools/ci_build/test_bazel.sh windows_ci "//tensorflow/lite/micro/... -//tensorflow/lite/micro/compression/... -//python/tflite_micro/signal/... -//signal/..."
tensorflow/lite/micro/tools/ci_build/test_bazel.sh windows_ci "//tensorflow/lite/micro/..."

makefile:
runs-on: windows-latest
Expand Down
4 changes: 4 additions & 0 deletions tensorflow/lite/micro/compression/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,10 @@ py_binary(
srcs = [
"view.py",
],
target_compatible_with = select({
"@bazel_tools//src/conditions:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":metadata_py",
"//tensorflow/lite/python:schema_py",
Expand Down
4 changes: 4 additions & 0 deletions tensorflow/lite/micro/compression/view_tests.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ def generate_view_tests(targets):
args = ["$(location {})".format(target)],
main = "view_test.py",
data = [target],
target_compatible_with = select({
"@bazel_tools//src/conditions:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":view",
requirement("absl_py"),
Expand Down
16 changes: 16 additions & 0 deletions tensorflow/lite/micro/examples/micro_speech/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,10 @@ py_binary(
data = [
":samples_30ms",
],
target_compatible_with = select({
"@bazel_tools//src/conditions:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
requirement("absl_py"),
requirement("numpy"),
Expand All @@ -223,6 +227,10 @@ py_binary(
data = [
":models_tflite",
],
target_compatible_with = select({
"@bazel_tools//src/conditions:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":audio_preprocessor",
],
Expand All @@ -241,6 +249,10 @@ py_test(
"nomsan", # Python doesn't like these symbols
"noubsan",
],
target_compatible_with = select({
"@bazel_tools//src/conditions:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":evaluate",
],
Expand All @@ -259,6 +271,10 @@ py_test(
"nomsan", # Python doesn't like these symbols
"noubsan",
],
target_compatible_with = select({
"@bazel_tools//src/conditions:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":audio_preprocessor",
],
Expand Down
Loading