From 19844f605f5e5b71d05164711dee13f8652adafe Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Tue, 16 May 2023 16:46:34 +0100 Subject: Add Kernel Writer driver code to dynamic fusion * Partially port ElementwiseBinary component to ckw (broadcast not supported yet) * Port Store component to ckw * Move KernelArgumentsHelpers to ckw_driver/ as it's only used by the driver ckw_driver is a middle layer between dynamic fusion and Compute Kernel Writer (CKW). It consumes the fused kernel component stream produced by Dynamic Fusion and uses CKW to write the kernel code complete with all meta info needed by the runtime to enqueue the kernel. It consists of two parts: * Kernel writing: This resides in dynamic_fusion/sketch * Runtime utilities: This resides in dynamic_fusion/runtime The integration (separation between DF and CKW) occurs in two places: * Inside GpuCKWDriver global driver that coordinates how the final fused kernel code is assembled together alongwith other meta info needed by runtime. * Inside each instantiated IGpuCKWComponentDriver component driver that drives CKW to write component-specific code or do component-specific configurations Partially resolves: COMPMID-5792 COMPMID-6282 COMPMID-6260 COMPMID-6266 Signed-off-by: SiCong Li Change-Id: Ib57a080a65fe8cfee1a8df1529fe572005a6d2f2 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9847 Reviewed-by: Gunes Bayir Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins --- SConscript | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'SConscript') diff --git a/SConscript b/SConscript index c7139552e3..9ddffc4273 100644 --- a/SConscript +++ b/SConscript @@ -127,7 +127,7 @@ def build_library(name, build_env, sources, static=False, libs=[]): cloned_build_env["LINKFLAGS"].remove('-pie') cloned_build_env["LINKFLAGS"].remove('-static-libstdc++') - if env['ckw']: + if env['experimental_dynamic_fusion']: libs.append('libckw.a') if static: @@ -536,11 +536,6 @@ if env['fixed_format_kernels']: if env['experimental_dynamic_fusion']: lib_files += filelist['experimental']['dynamic_fusion'] -# Compute Kernel Writer integration files -if env['ckw']: - if env['opencl']: - lib_files += filelist['experimental']['ckw']['cl'] - # Logging files if env["logging"]: lib_files += filelist['logging'] -- cgit v1.2.1