summaryrefslogtreecommitdiffstats
path: root/third_party/highway/hwy.gni
blob: b1c954eb513480d4401d65c094d83d95a84a3466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
_hwy = get_path_info("hwy", "abspath")

hwy_public = [
  # Public
  "$_hwy/aligned_allocator.h",
  "$_hwy/base.h",
  "$_hwy/cache_control.h",
  "$_hwy/per_target.h",
  "$_hwy/print.h",

  # Public, textual
  "$_hwy/foreach_target.h",
  "$_hwy/highway_export.h",
  "$_hwy/highway.h",
  "$_hwy/print-inl.h",

  # Private
  "$_hwy/detect_compiler_arch.h",
  "$_hwy/detect_targets.h",
  "$_hwy/targets.h",

  # Private, textual:
  "$_hwy/ops/arm_neon-inl.h",
  "$_hwy/ops/arm_sve-inl.h",
  "$_hwy/ops/emu128-inl.h",
  "$_hwy/ops/generic_ops-inl.h",
  "$_hwy/ops/scalar-inl.h",
  "$_hwy/ops/set_macros-inl.h",
  "$_hwy/ops/shared-inl.h",
  "$_hwy/ops/x86_128-inl.h",
  "$_hwy/ops/x86_256-inl.h",
  "$_hwy/ops/x86_512-inl.h",
]

hwy_sources = [
  "$_hwy/aligned_allocator.cc",
  "$_hwy/per_target.cc",
  "$_hwy/print.cc",
  "$_hwy/targets.cc",
]

hwy_contrib_public = [
  "$_hwy/contrib/algo/copy-inl.h",
  "$_hwy/contrib/algo/find-inl.h",
  "$_hwy/contrib/algo/transform-inl.h",
  "$_hwy/contrib/dot/dot-inl.h",
  "$_hwy/contrib/image/image.h",
  "$_hwy/contrib/math/math-inl.h",
]

hwy_contrib_sources = [
  "$_hwy/contrib/image/image.cc",
]