aboutsummaryrefslogtreecommitdiff
path: root/tests/SConscript
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2022-03-30 12:23:10 +0100
committerGiorgio Arena <giorgio.arena@arm.com>2022-03-31 11:08:38 +0000
commit892b70a8bb338f0c10c06112c41f6c8e8c3495f9 (patch)
tree0a855ad5854335a6c9c48ad30312d3e0b0f0235d /tests/SConscript
parent36a1c119cfabfe3da6ea3ef69a0a21929cb418d6 (diff)
downloadComputeLibrary-892b70a8bb338f0c10c06112c41f6c8e8c3495f9.tar.gz
Fix embedded kernel header inclusion for dynamic fusion
Resolves: COMPMID-5155 Signed-off-by: Giorgio Arena <giorgio.arena@arm.com> Change-Id: Ic16fb12bfa748cac92d73019d08eea53bf470c12 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7354 Reviewed-by: SiCong Li <sicong.li@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/SConscript')
-rw-r--r--tests/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/SConscript b/tests/SConscript
index cfe3bc5e82..62fa4fce11 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -114,8 +114,9 @@ filter_pattern = test_env['test_filter']
files_validation += Glob('validation/CPP/' + filter_pattern)
if env['opencl']:
- if env['experimental_dynamic_fusion'] and not env['embed_kernels']:
+ if env['experimental_dynamic_fusion']:
test_env.Append(CPPDEFINES = ['ENABLE_EXPERIMENTAL_DYNAMIC_FUSION'])
+ files_validation += Glob('validation/CL/UNIT/dynamic_fusion/' + filter_pattern)
filter_pattern = test_env['test_filter']
@@ -128,8 +129,7 @@ if env['opencl']:
files_validation += Glob('validation/CL/*/' + filter_pattern)
files_validation += Glob('validation/CL/' + filter_pattern)
- if env['experimental_dynamic_fusion'] and not env['embed_kernels']:
- files_validation += Glob('validation/CL/UNIT/dynamic_fusion/' + filter_pattern)
+
if env['external_tests_dir']:
files_validation += Glob(env['external_tests_dir'] + '/tests/validation/CL/' + filter_pattern)
files_validation += Glob('validation/gpu/unit/*.cpp')