From d58cec032556abb103cdf7564ab29762d5c4c051 Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Tue, 18 Jul 2017 15:44:21 +0100 Subject: COMPMID-415: Cleanup accessors Change-Id: Id19c8c1ea76f6e6679a4ac770e804f8012a2b5a6 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80937 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- tests/validation/CL/FixedPoint/FixedPoint_QS8.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tests/validation/CL/FixedPoint') diff --git a/tests/validation/CL/FixedPoint/FixedPoint_QS8.cpp b/tests/validation/CL/FixedPoint/FixedPoint_QS8.cpp index 1a2389ee87..d4ccc2ba2b 100644 --- a/tests/validation/CL/FixedPoint/FixedPoint_QS8.cpp +++ b/tests/validation/CL/FixedPoint/FixedPoint_QS8.cpp @@ -50,7 +50,6 @@ using namespace arm_compute; using namespace arm_compute::test; -using namespace arm_compute::test::cl; using namespace arm_compute::test::validation; namespace @@ -145,12 +144,12 @@ CLTensor compute_fixed_point_op(const TensorShape &shape, int fixed_point_positi sources.push_back(fixed_point_operation_kernel); // Create program - ::cl::Program program = ::cl::Program(sources); + ::cl::Program program(sources); // Build program program.build(build_opts.c_str()); - ::cl::Kernel kernel = ::cl::Kernel(program, "fixed_point_operation_qs8", nullptr); + ::cl::Kernel kernel(program, "fixed_point_operation_qs8", nullptr); unsigned int idx = 0; kernel.setArg(idx++, src.cl_buffer()); -- cgit v1.2.1