aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL/CLKernelLibrary.h
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-04-13 16:58:43 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:49:37 +0000
commit7da55aa651c58ddd7cec1bb176e6782bae134ccd (patch)
tree9bb6dc067dee32843ad12c0703f083963a0f4f8b /arm_compute/core/CL/CLKernelLibrary.h
parentfd683111bba15288dc88b7f53486f935ebeccde0 (diff)
downloadComputeLibrary-7da55aa651c58ddd7cec1bb176e6782bae134ccd.tar.gz
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>
Diffstat (limited to 'arm_compute/core/CL/CLKernelLibrary.h')
-rw-r--r--arm_compute/core/CL/CLKernelLibrary.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/arm_compute/core/CL/CLKernelLibrary.h b/arm_compute/core/CL/CLKernelLibrary.h
index 12e424fce9..257ef7ded2 100644
--- a/arm_compute/core/CL/CLKernelLibrary.h
+++ b/arm_compute/core/CL/CLKernelLibrary.h
@@ -283,14 +283,6 @@ public:
* @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 @@ public:
_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.
*