aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL/CLKernelLibrary.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2018-07-06 17:06:36 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit6200fa405b16b4145b926a96de197718ad31bf93 (patch)
tree4ecaa3a29d79371c6439acf5bb580bc7ba99af09 /arm_compute/core/CL/CLKernelLibrary.h
parentea55f91e5dd4e5bc766fabbac6df6ce3ab984d0e (diff)
downloadComputeLibrary-6200fa405b16b4145b926a96de197718ad31bf93.tar.gz
COMPMID-1288 Optimizing CLGEMMLowp using 8 bit dot product instruction
Change-Id: I536174b9381660a94578d6aa1892a6289a820391 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139109 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/CL/CLKernelLibrary.h')
-rw-r--r--arm_compute/core/CL/CLKernelLibrary.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arm_compute/core/CL/CLKernelLibrary.h b/arm_compute/core/CL/CLKernelLibrary.h
index f25915f053..18b6bb4434 100644
--- a/arm_compute/core/CL/CLKernelLibrary.h
+++ b/arm_compute/core/CL/CLKernelLibrary.h
@@ -277,6 +277,12 @@ public:
return _context;
}
+ /** Gets the CL device for which the programs are created. */
+ cl::Device &get_device()
+ {
+ return _device;
+ }
+
/** Sets the CL device for which the programs are created.
*
* @param[in] device A CL device.