xref: /aosp_15_r20/external/ComputeLibrary/tests/framework/ParametersLibrary.h (revision c217d954acce2dbc11938adb493fc0abd69584f3)
1 /*
2  * Copyright (c) 2019-2021 Arm Limited.
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to
8  * deal in the Software without restriction, including without limitation the
9  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10  * sell copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #ifndef ARM_COMPUTE_TEST_PARAMETERS_LIBRARY_H
25 #define ARM_COMPUTE_TEST_PARAMETERS_LIBRARY_H
26 
27 #include "arm_compute/runtime/IRuntimeContext.h"
28 #include "arm_compute/runtime/Tensor.h"
29 #if ARM_COMPUTE_CL
30 #include "arm_compute/runtime/CL/CLRuntimeContext.h"
31 #include "arm_compute/runtime/CL/CLTensor.h"
32 #endif /* ARM_COMPUTE_CL */
33 
34 #include <memory>
35 
36 namespace arm_compute
37 {
38 namespace test
39 {
40 // Return type trait helper
41 template <class T>
42 struct ContextType
43 {
44     using type = void;
45 };
46 template <>
47 struct ContextType<Tensor>
48 {
49     using type = IRuntimeContext;
50 };
51 
52 #if ARM_COMPUTE_CL
53 template <>
54 struct ContextType<CLTensor>
55 {
56     using type = CLRuntimeContext;
57 };
58 #endif /* ARM_COMPUTE_CL */
59 
60 /** Class that contains all the global parameters used by the tests */
61 class ParametersLibrary final
62 {
63 public:
64     /** Default constructor */
65     ParametersLibrary() = default;
66     /** Set cpu context to be used by the tests
67      *
68      * @param[in] cpu_ctx CPU context to use
69      */
70     void set_cpu_ctx(std::unique_ptr<IRuntimeContext> cpu_ctx);
71     /** Set gpu context to be used by the tests
72      *
73      * @param[in] cl_ctx GPU context to use
74      */
75     void set_cl_ctx(std::unique_ptr<IRuntimeContext> cl_ctx);
76     /** Set gpu context to be used by the tests
77      *
78      * @param[in] gc_ctx GPU context to use
79      */
80     void set_gc_ctx(std::unique_ptr<IRuntimeContext> gc_ctx);
81     /** Get context given a tensor type
82      *
83      * @tparam TensorType
84      *
85      * @return Pointer to the context
86      */
87     template <typename TensorType>
88     typename ContextType<TensorType>::type *get_ctx()
89     {
90         return nullptr;
91     }
92 
93 private:
94     std::unique_ptr<IRuntimeContext> _cpu_ctx{ nullptr };
95     std::unique_ptr<IRuntimeContext> _cl_ctx{ nullptr };
96     std::unique_ptr<IRuntimeContext> _gc_ctx{ nullptr };
97 };
98 } // namespace test
99 } // namespace arm_compute
100 #endif //ARM_COMPUTE_TEST_PARAMETERS_LIBRARY_H
101