2019-11-06 11:49:27 +01:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2019 Konduit K.K.
|
|
|
|
*
|
|
|
|
* This program and the accompanying materials are made available under the
|
|
|
|
* terms of the Apache License, Version 2.0 which is available at
|
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
******************************************************************************/
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
//
|
|
|
|
// Created by raver on 5/17/2019.
|
|
|
|
//
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
#include <array/DataTypeUtils.h>
|
2019-11-06 11:49:27 +01:00
|
|
|
#include <array/ConstantHolder.h>
|
2020-03-02 10:49:41 +01:00
|
|
|
#include <helpers/shape.h>
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
namespace sd {
|
2019-06-06 14:21:15 +02:00
|
|
|
ConstantHolder::ConstantHolder(const ConstantHolder& other) {
|
|
|
|
_buffers = other._buffers;
|
|
|
|
_deviceId = other._deviceId;
|
|
|
|
}
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
bool ConstantHolder::hasBuffer(sd::DataType dataType) {
|
2019-06-06 14:21:15 +02:00
|
|
|
return _buffers.count(dataType) > 0;
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:02:02 +02:00
|
|
|
std::mutex* ConstantHolder::mutex() {
|
|
|
|
return &_mutex;
|
|
|
|
}
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
template <typename T>
|
|
|
|
bool ConstantHolder::hasBuffer() {
|
|
|
|
return hasBuffer(DataTypeUtils::fromT<T>());
|
|
|
|
}
|
2019-11-06 11:49:27 +01:00
|
|
|
BUILD_SINGLE_TEMPLATE(template ND4J_EXPORT bool ConstantHolder::hasBuffer, (void), LIBND4J_TYPES);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
void ConstantHolder::addBuffer(ConstantDataBuffer &pointer, sd::DataType dataType) {
|
2019-06-06 14:21:15 +02:00
|
|
|
_buffers[dataType] = pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void ConstantHolder::addBuffer(ConstantDataBuffer &pointer) {
|
|
|
|
addBuffer(pointer, DataTypeUtils::fromT<T>());
|
|
|
|
}
|
2019-11-06 11:49:27 +01:00
|
|
|
BUILD_SINGLE_TEMPLATE(template ND4J_EXPORT void ConstantHolder::addBuffer, (ConstantDataBuffer& cb), LIBND4J_TYPES);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
ConstantDataBuffer* ConstantHolder::getConstantDataBuffer(sd::DataType dataType) {
|
2019-06-06 14:21:15 +02:00
|
|
|
if (!hasBuffer(dataType))
|
|
|
|
throw std::runtime_error("Requested dataType is absent in storage");
|
|
|
|
|
|
|
|
return &_buffers[dataType];
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
ConstantDataBuffer* ConstantHolder::getConstantDataBuffer() {
|
|
|
|
return getConstantDataBuffer(DataTypeUtils::fromT<T>());
|
|
|
|
}
|
|
|
|
BUILD_SINGLE_TEMPLATE(template ND4J_EXPORT ConstantDataBuffer* ConstantHolder::getConstantDataBuffer, (), LIBND4J_TYPES);
|
|
|
|
}
|