* sync after cublas*gemm Signed-off-by: raver119 <raver119@gmail.com> * mutex for CublasHelper Signed-off-by: raver119 <raver119@gmail.com> * don't store cublasHandle in LaunchContext, it's per-device anyway Signed-off-by: raver119 <raver119@gmail.com> * some printout Signed-off-by: raver119 <raver119@gmail.com> * check for field instead Signed-off-by: raver119 <raver119@gmail.com> * pew-pew Signed-off-by: raver119 <raver119@gmail.com> * don't release ContextBuffers until device changed Signed-off-by: raver119 <raver119@gmail.com> * small tweak Signed-off-by: raver119 <raver119@gmail.com> * some logging in sgemm Signed-off-by: raver119 <raver119@gmail.com> * stream sync Signed-off-by: raver119 <raver119@gmail.com> * some more logging Signed-off-by: raver119 <raver119@gmail.com> * some more error checks Signed-off-by: raver119 <raver119@gmail.com> * one fancy test Signed-off-by: raver119 <raver119@gmail.com> * one fancy test Signed-off-by: raver119 <raver119@gmail.com> * minor AffinityManager fix Signed-off-by: raver119 <raver119@gmail.com> * cudaEvent error logging improvement Signed-off-by: raver119 <raver119@gmail.com> * ConstantHelper thread safety Signed-off-by: raver119 <raver119@gmail.com> * - minor corrections in ConstantTadHelper Signed-off-by: Yurii <yurii@skymind.io> * ConstantShapeHelper thread safety Signed-off-by: raver119 <raver119@gmail.com> * ConstantTadHelper.cu updated Signed-off-by: raver119 <raver119@gmail.com> * logging off Signed-off-by: raver119 <raver119@gmail.com> * logging off Signed-off-by: raver119 <raver119@gmail.com>
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
//
|
|
// Created by raver on 5/17/2019.
|
|
//
|
|
|
|
#include <array/ConstantHolder.h>
|
|
#include <DataTypeUtils.h>
|
|
|
|
|
|
namespace nd4j {
|
|
ConstantHolder::ConstantHolder(const ConstantHolder& other) {
|
|
_buffers = other._buffers;
|
|
_deviceId = other._deviceId;
|
|
}
|
|
|
|
bool ConstantHolder::hasBuffer(nd4j::DataType dataType) {
|
|
return _buffers.count(dataType) > 0;
|
|
}
|
|
|
|
std::mutex* ConstantHolder::mutex() {
|
|
return &_mutex;
|
|
}
|
|
|
|
template <typename T>
|
|
bool ConstantHolder::hasBuffer() {
|
|
return hasBuffer(DataTypeUtils::fromT<T>());
|
|
}
|
|
BUILD_SINGLE_TEMPLATE(template ND4J_EXPORT bool ConstantHolder::hasBuffer, (), LIBND4J_TYPES);
|
|
|
|
void ConstantHolder::addBuffer(ConstantDataBuffer &pointer, nd4j::DataType dataType) {
|
|
_buffers[dataType] = pointer;
|
|
}
|
|
|
|
template <typename T>
|
|
void ConstantHolder::addBuffer(ConstantDataBuffer &pointer) {
|
|
addBuffer(pointer, DataTypeUtils::fromT<T>());
|
|
}
|
|
BUILD_SINGLE_TEMPLATE(template ND4J_EXPORT void ConstantHolder::addBuffer, (ConstantDataBuffer&), LIBND4J_TYPES);
|
|
|
|
ConstantDataBuffer* ConstantHolder::getConstantDataBuffer(nd4j::DataType dataType) {
|
|
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);
|
|
} |