aboutsummaryrefslogtreecommitdiff
path: root/tests/SConscript
diff options
context:
space:
mode:
authorNathan John Sircombe <nathan.sircombe@arm.com>2023-04-26 15:02:43 +0100
committernathan.sircombe <nathan.sircombe@arm.com>2023-05-02 14:24:17 +0000
commitd7113e4af5b5497d3a3a62dc9cf6b147e2a024cd (patch)
tree699742317f9befb3adf8be4222e13fa6cdd46f6b /tests/SConscript
parent7a0f1bdaf74cde263b2919c7d1652b0cb87a94f3 (diff)
downloadComputeLibrary-d7113e4af5b5497d3a3a62dc9cf6b147e2a024cd.tar.gz
Removes `experimental` from `experimental_fixed_format_kernels` flag
Renames `experimental_fixed_format_kernels` build option to `fixed_format_kernels`. Adds documentation for the flag covering basics: - What fixed-format kernels are - Why they're needed - Which backend they're for (i.e. CPU) - Some pointers on how to use them. Resolves: ONCPUML-1253 Change-Id: I428c98614c309c9ffc32d0f32daa24740f7cb967 Signed-off-by: Nathan John Sircombe <nathan.sircombe@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9523 Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: SiCong Li <sicong.li@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/SConscript')
-rw-r--r--tests/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/SConscript b/tests/SConscript
index 8596cfa042..33f709e454 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-# Copyright (c) 2017-2022 Arm Limited.
+# Copyright (c) 2017-2023 Arm Limited.
#
# SPDX-License-Identifier: MIT
#
@@ -185,7 +185,7 @@ if test_env['reference_openmp'] and env['os'] not in ['bare_metal', 'macos','win
test_env['LINKFLAGS'].append('-static-openmp')
# Testing for fixed format GEMM kernels.
-if env['experimental_fixed_format_kernels'] and test_env['validation_tests']:
+if env['fixed_format_kernels'] and test_env['validation_tests']:
test_env.Append(CPPDEFINES = ['ARM_COMPUTE_ENABLE_FIXED_FORMAT_KERNELS'])
if test_env['validation_tests']: