aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormorgolock <pablo.tello@arm.com>2020-11-19 14:38:22 +0000
committerPablo Marquez Tello <pablo.tello@arm.com>2020-11-19 15:55:31 +0000
commitcb9f1e14c2b5af96539bad7dc6ae9567d0b29c96 (patch)
tree8ad7afac9531fc5b4d946fc6cf6796356f56841f
parenta98f5d8c5be6e808b66117958ea14b6246c0a039 (diff)
downloadComputeLibrary-cb9f1e14c2b5af96539bad7dc6ae9567d0b29c96.tar.gz
Remove INTERNAL_ONLY
Change-Id: I39f0296fdb8c9be36c2775fab9b91ef22db7b136 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4479 Reviewed-by: SiCong Li <sicong.li@arm.com> Tested-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
-rw-r--r--SConstruct2
-rw-r--r--tests/SConscript17
2 files changed, 0 insertions, 19 deletions
diff --git a/SConstruct b/SConstruct
index e5a60c0ad4..5dac494097 100644
--- a/SConstruct
+++ b/SConstruct
@@ -64,8 +64,6 @@ vars.AddVariables(
PathVariable("install_dir", "Specify sub-folder for the install", "", PathVariable.PathAccept),
BoolVariable("exceptions", "Enable/disable C++ exception support", True),
PathVariable("linker_script", "Use an external linker script", "", PathVariable.PathAccept),
- #FIXME Remove before release (And remove all references to INTERNAL_ONLY)
- BoolVariable("internal_only", "Enable ARM internal only tests", False),
ListVariable("custom_options", "Custom options that can be used to turn on/off features", "none", ["disable_mmla_fp"]),
ListVariable("data_type_support", "Enable a list of data types to support", "all", ["qasymm8", "qasymm8_signed", "qsymm16", "fp16", "fp32"]),
("toolchain_prefix", "Override the toolchain prefix", ""),
diff --git a/tests/SConscript b/tests/SConscript
index 6fc67af747..42f9f35552 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -88,10 +88,6 @@ else:
if env['os'] in ['bare_metal']:
Import("bootcode_o")
-#FIXME Delete before release
-if env['internal_only']:
- test_env.Append(CPPDEFINES=['INTERNAL_ONLY'])
-
test_env.Append(CPPPATH = ["#3rdparty/include"])
test_env.Append(LIBPATH = ["#3rdparty/%s/%s" % (env['os'], env['arch'])])
@@ -99,9 +95,6 @@ common_files = Glob('*.cpp')
common_objects = [test_env.StaticObject(f) for f in common_files]
files_benchmark = Glob('benchmark/*.cpp')
-#FIXME Delete before release
-if env['internal_only']:
- files_benchmark += Glob('../3rdparty/tests/benchmark/*.cpp')
# Add unit tests
files_validation = Glob('validation/UNIT/*/*.cpp')
@@ -118,24 +111,14 @@ if env['opencl']:
files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
files_benchmark += Glob('benchmark/CL/' + filter_pattern)
- #FIXME Delete before release
- if env['internal_only']:
- files_benchmark += Glob('../3rdparty/tests/benchmark/CL/' + filter_pattern)
files_validation += Glob('validation/CL/*/' + filter_pattern)
files_validation += Glob('validation/CL/' + filter_pattern)
- #FIXME Delete before release
- if env['internal_only']:
- files_validation += Glob('../3rdparty/tests/validation/CL/' + filter_pattern)
if env['neon']:
filter_pattern = test_env['test_filter']
files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
- #FIXME Delete before release
- if env['internal_only']:
- files_benchmark += Glob('../3rdparty/tests/benchmark/NEON/' + filter_pattern)
-
files_validation += Glob('validation/NEON/' + filter_pattern)
if env['os'] == 'bare_metal':
files_validation += Glob('validation/NEON/UNIT/MemoryManager.cpp' + filter_pattern)