COMPMID-959: Add accessors for the OpenCL program cache

Change-Id: I7920ecdf6687341cbcf4d75aecc15c4164c64636
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/127722
Tested-by: Jenkins <bsgcomp@arm.com>
Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
diff --git a/arm_compute/core/CL/CLKernelLibrary.h b/arm_compute/core/CL/CLKernelLibrary.h
index 12e424f..257ef7d 100644
--- a/arm_compute/core/CL/CLKernelLibrary.h
+++ b/arm_compute/core/CL/CLKernelLibrary.h
@@ -283,14 +283,6 @@
      * @return The created kernel.
      */
     Kernel create_kernel(const std::string &kernel_name, const StringSet &build_options_set = {}) const;
-    /** Serializes and saves programs to a binary.
-     *
-     */
-    void save_binary();
-    /** Load serialized binary with all the programs.
-     *
-     */
-    void load_binary();
     /** Find the maximum number of local work items in a workgroup can be supported for the kernel.
      *
      */
@@ -308,6 +300,20 @@
         _built_programs_map.clear();
     }
 
+    /** Access the cache of built OpenCL programs
+     */
+    const std::map<std::string, cl::Program> &get_built_programs() const
+    {
+        return _built_programs_map;
+    }
+
+    /** Add a new built program to the cache
+     *
+     * @param[in] built_program_name Name of the program
+     * @param[in] program            Built program to add to the cache
+     */
+    void add_built_program(const std::string &built_program_name, cl::Program program);
+
 private:
     /** Load program and its dependencies.
      *