d9d2700eea865952f17f3bb896fc68a34f6c79e1
[platform/core/ml/nnfw.git] / runtime / contrib / heap_trace / src / cl_create_buffer_stub.cc
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "trace.h"
18 #include "function_resolver.h"
19
20 #include <CL/cl.h>
21
22 #include <memory>
23
24 extern std::unique_ptr<Trace> GlobalTrace;
25
26 extern "C" {
27
28 cl_mem clCreateBuffer(cl_context context, cl_mem_flags flags, size_t size, void *host_ptr,
29                       cl_int *errcode_ret)
30 {
31   static auto isOriginalFunctionCallSuccessful = [](cl_mem result) -> bool { return result; };
32
33   static auto originalFunction =
34       findFunctionByName<cl_mem, cl_context, cl_mem_flags, size_t, void *, cl_int *>(
35           "clCreateBuffer");
36   cl_mem result = originalFunction(context, flags, size, host_ptr, errcode_ret);
37   if (isOriginalFunctionCallSuccessful(result) && !Trace::Guard{}.isActive())
38   {
39     GlobalTrace->logAllocationEvent(result, size);
40   }
41
42   return result;
43 }
44 }