Files
compute-runtime/opencl/source/sharings/sharing_factory.inl
kamdiedrich d015d3633f Add absolute path to include
Change-Id: Ib0782b4ab8d9a26ec358ecfb57721f4fe8d51b06
2020-02-23 08:47:49 +01:00

18 lines
338 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "opencl/source/sharings/sharing_factory.h"
namespace NEO {
template <typename F, typename T>
SharingFactory::RegisterSharing<F, T>::RegisterSharing() {
sharingContextBuilder[T::sharingId] = new F;
};
} // namespace NEO