Skip to content

Commit 6c9990a

Browse files
committed
Move Config Srcs into build_srcs.bzl
1 parent cbd407b commit 6c9990a

File tree

3 files changed

+47
-300
lines changed

3 files changed

+47
-300
lines changed

BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,8 @@ xnnpack_cxx_library(
561561
":microparams_h",
562562
":quantization",
563563
"//src/configs:config_hdrs",
564+
"//src/configs:reduce_config",
565+
"//src/configs:unary_elementwise_config",
564566
] + xnnpack_if_kleidiai_enabled([
565567
"@KleidiAI//kai/ukernels/matmul",
566568
]),

build_srcs.bzl

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,3 +321,29 @@ MICROKERNEL_HDRS = [
321321
"src/xnnpack/vscaleextexp.h",
322322
"src/xnnpack/vunary.h",
323323
]
324+
325+
MICROKERNEL_CONFIG_SRCS = [
326+
"argmaxpool-config.c",
327+
"avgpool-config.c",
328+
"binary-elementwise-config.c",
329+
"cmul-config.c",
330+
"conv-hwc2chw-config.c",
331+
"dwconv-config.c",
332+
"dwconv2d-chw-config.c",
333+
"gemm-config.c",
334+
"ibilinear-chw-config.c",
335+
"ibilinear-config.c",
336+
"lut32norm-config.c",
337+
"maxpool-config.c",
338+
"pack-lh-config.c",
339+
"raddstoreexpminusmax-config.c",
340+
"reduce-config.c",
341+
"spmm-config.c",
342+
"transpose-config.c",
343+
"unary-elementwise-config.c",
344+
"unpool-config.c",
345+
"vmulcaddc-config.c",
346+
"x8-lut-config.c",
347+
"xx-fill-config.c",
348+
"xx-pad-config.c",
349+
]

0 commit comments

Comments
 (0)