1/* Copyright 2019 Google LLC. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.
14==============================================================================*/
15
16#include "ruy/have_built_path_for.h"
17#include "ruy/opt_set.h"
18
19namespace ruy {
20
21#if RUY_PLATFORM_X86
22// IMPORTANT:
23// These patterns must match those in the pack and kernel cc files.
24#if !(RUY_PLATFORM_AVX512 && RUY_OPT(ASM))
25
26bool HaveBuiltPathForAvx512() { return false; }
27
28#else // RUY_PLATFORM_AVX512 && RUY_OPT(ASM)
29
30bool HaveBuiltPathForAvx512() { return true; }
31
32#endif // RUY_PLATFORM_AVX512 && RUY_OPT(ASM)
33#endif // RUY_PLATFORM_X86
34
35} // namespace ruy
36