Remove 3dparty folder and submodule
authormorgolock <pablo.tello@arm.com>
Wed, 18 Nov 2020 14:20:00 +0000 (14:20 +0000)
committerPablo Marquez Tello <pablo.tello@arm.com>
Thu, 19 Nov 2020 18:09:01 +0000 (18:09 +0000)
Change-Id: I6d74f2fc7437c23574eb8e12af52594e66e30027
Signed-off-by: morgolock <pablo.tello@arm.com>
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4467
Reviewed-by: SiCong Li <sicong.li@arm.com>
Tested-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
.gitmodules
3rdparty [deleted submodule]
examples/SConscript
tests/SConscript

index da9bc32fee3a02eeb3e1f6591cfd3549bbf2c968..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,4 +0,0 @@
-[submodule "3rdparty"]
-       path = 3rdparty
-       url = https://eu-gerrit-1.euhpc.arm.com/VisualCompute/3rdparty
-       branch = master
diff --git a/3rdparty b/3rdparty
deleted file mode 160000 (submodule)
index ba65985..0000000
--- a/3rdparty
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit ba65985c4a47effae4620b95b158ecae8764d2e2
index cd07c6a15ad21c0467a5c0043c353a7bca2ea318..225abbb9b1752b9222c9d682a3fa060dc83d16ff 100644 (file)
@@ -131,19 +131,3 @@ if env['gles_compute']:
         alias = examples_env.Alias(example, prog)
         Default(alias)
 
-#FIXME Delete 3rdparty builds before release
-for file in Glob("#3rdparty/examples/graph_*.cpp"):
-    example = os.path.basename(os.path.splitext(str(file))[0])
-    prog = None
-
-    if env['os'] in ['android', 'bare_metal'] or env['standalone']:
-        prog = examples_env.Program(example, [examples_env.Object(source=file, target=example), utils, graph_utils], LIBS = examples_libs + arm_compute_graph_libs, LINKFLAGS=examples_env["LINKFLAGS"]+['-Wl,--whole-archive',graph_dependency,'-Wl,--no-whole-archive'] + extra_link_flags)
-        Depends(prog, graph_dependency)
-        prog = install_bin(prog)
-    else:
-        #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
-        prog = examples_env.Program(example, [examples_env.Object(source=file, target=example), utils, graph_utils], LIBS = examples_libs + arm_compute_graph_libs, LINKFLAGS=examples_env["LINKFLAGS"]+['-Wl,--allow-shlib-undefined'] )
-        Depends(prog, graph_dependency)
-        prog = install_bin(prog)
-    alias = examples_env.Alias(example, prog)
-    Default(alias)
index 42f9f3555227d91bfd8b29ec968e455bbd84f03a..b625f032bcf807792053b749022a835d49825fdf 100644 (file)
@@ -31,9 +31,8 @@ variables = [
     BoolVariable("benchmark_examples", "Build benchmark examples programs", True),
     BoolVariable("validate_examples", "Build validate examples programs", True),
     BoolVariable("reference_openmp", "Build reference validation with openmp", True),
-    #FIXME Switch the following two options to False before releasing
-    BoolVariable("validation_tests", "Build validation test programs", True),
-    BoolVariable("benchmark_tests", "Build benchmark test programs", True),
+    BoolVariable("validation_tests", "Build validation test programs", False),
+    BoolVariable("benchmark_tests", "Build benchmark test programs", False),
     ("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp")
 ]
 
@@ -111,7 +110,6 @@ if env['opencl']:
 
     files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
     files_benchmark += Glob('benchmark/CL/' + filter_pattern)
-
     files_validation += Glob('validation/CL/*/' + filter_pattern)
     files_validation += Glob('validation/CL/' + filter_pattern)