2019-06-06 14:21:15 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (c) 2015-2018 Skymind, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
//
|
|
|
|
// @author raver119@gmail.com
|
|
|
|
//
|
|
|
|
|
|
|
|
#include <helpers/logger.h>
|
|
|
|
#include <graph/profiling/NodeProfile.h>
|
2020-02-13 18:59:35 +01:00
|
|
|
#include <helpers/ShapeUtils.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
|
|
|
namespace graph {
|
|
|
|
NodeProfile::NodeProfile(int id, const char *name) {
|
|
|
|
_id = id;
|
|
|
|
|
|
|
|
if (name != nullptr)
|
|
|
|
_name = name;
|
|
|
|
};
|
|
|
|
|
|
|
|
void NodeProfile::printOut() {
|
|
|
|
nd4j_printf("Node: <%i:%s>\n", _id, _name.c_str());
|
|
|
|
nd4j_printf(" Memory: ACT: %lld; TMP: %lld; OBJ: %lld; TTL: %lld;\n", _memoryActivations / _merges, _memoryTemporary / _merges, _memoryObjects / _merges, _memoryTotal / _merges);
|
|
|
|
nd4j_printf(" Time: PREP: %lld ns; EXEC: %lld ns; TTL: %lld ns;\n", _preparationTime / _merges, _executionTime / _merges, _totalTime / _merges);
|
|
|
|
nd4j_printf(" PREP: INPUT: %lld ns; SHAPE: %lld ns; ARRAY: %lld ns;\n", _inputTime / _merges, _shapeTime / _merges, _arrayTime / _merges);
|
2020-02-13 18:59:35 +01:00
|
|
|
|
|
|
|
std::string inputs;
|
|
|
|
std::string outputs;
|
|
|
|
|
|
|
|
int cnt = 0;
|
|
|
|
for (const auto &v: _inputShapes)
|
|
|
|
inputs += v + " ";
|
|
|
|
|
|
|
|
for (const auto &v: _outputShapes)
|
|
|
|
outputs += v + " ";
|
|
|
|
|
|
|
|
|
|
|
|
nd4j_printf(" Inputs: %s\n", inputs.c_str());
|
|
|
|
nd4j_printf(" Outputs: %s\n", outputs.c_str());
|
2019-06-06 14:21:15 +02:00
|
|
|
};
|
|
|
|
|
2020-02-13 18:59:35 +01:00
|
|
|
Nd4jLong NodeProfile::getActivationsSize() const {
|
2019-06-06 14:21:15 +02:00
|
|
|
return _memoryActivations;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setShapeFunctionTime(Nd4jLong time) {
|
|
|
|
_shapeTime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setArrayTime(Nd4jLong time) {
|
|
|
|
_arrayTime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setInputTime(Nd4jLong time) {
|
|
|
|
_inputTime = time;
|
|
|
|
}
|
|
|
|
|
2020-02-13 18:59:35 +01:00
|
|
|
Nd4jLong NodeProfile::getTemporarySize() const{
|
2019-06-06 14:21:15 +02:00
|
|
|
return _memoryTemporary;
|
|
|
|
}
|
|
|
|
|
2020-02-13 18:59:35 +01:00
|
|
|
Nd4jLong NodeProfile::getObjectsSize() const{
|
2019-06-06 14:21:15 +02:00
|
|
|
return _memoryObjects;
|
|
|
|
}
|
|
|
|
|
2020-02-13 18:59:35 +01:00
|
|
|
Nd4jLong NodeProfile::getTotalSize() const{
|
2019-06-06 14:21:15 +02:00
|
|
|
return _memoryTotal;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setBuildTime(Nd4jLong time) {
|
|
|
|
_buildTime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setPreparationTime(Nd4jLong time) {
|
|
|
|
_preparationTime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setExecutionTime(Nd4jLong time) {
|
|
|
|
_executionTime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setTotalTime(Nd4jLong time) {
|
|
|
|
_totalTime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setActivationsSize(Nd4jLong bytes) {
|
|
|
|
_memoryActivations = bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setTemporarySize(Nd4jLong bytes) {
|
|
|
|
_memoryTemporary = bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setObjectsSize(Nd4jLong bytes) {
|
|
|
|
_memoryObjects = bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::setTotalSize(Nd4jLong bytes) {
|
|
|
|
_memoryTotal = bytes;
|
|
|
|
}
|
|
|
|
|
2020-02-13 18:59:35 +01:00
|
|
|
Nd4jLong NodeProfile::getExecutionTime() const {
|
|
|
|
return _executionTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::addInputShape(Nd4jLong *shapeInfo) {
|
2020-02-14 14:20:31 +01:00
|
|
|
_inputShapes.emplace_back(ShapeUtils::shapeInfoAsString(shapeInfo));
|
2020-02-13 18:59:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::addOutputShape(Nd4jLong *shapeInfo) {
|
2020-02-14 14:20:31 +01:00
|
|
|
_outputShapes.emplace_back(ShapeUtils::shapeInfoAsString(shapeInfo));
|
2020-02-13 18:59:35 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
void NodeProfile::merge(NodeProfile *other) {
|
|
|
|
_merges += other->_merges;
|
|
|
|
_memoryObjects += other->_memoryObjects;
|
|
|
|
_memoryActivations += other->_memoryActivations;
|
|
|
|
_memoryTemporary += other->_memoryTemporary;
|
|
|
|
_memoryTotal += other->_memoryTotal;
|
|
|
|
|
|
|
|
_preparationTime += other->_preparationTime;
|
|
|
|
_executionTime += other->_executionTime;
|
|
|
|
_totalTime += other->_totalTime;
|
|
|
|
_shapeTime += other->_shapeTime;
|
|
|
|
_arrayTime += other->_arrayTime;
|
|
|
|
_inputTime += other->_inputTime;
|
2020-02-13 18:59:35 +01:00
|
|
|
|
|
|
|
_inputShapes = other->_inputShapes;
|
|
|
|
_outputShapes = other->_outputShapes;
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string& NodeProfile::name() {
|
|
|
|
return _name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeProfile::assign(NodeProfile *other) {
|
|
|
|
_merges = other->_merges;
|
|
|
|
_memoryObjects = other->_memoryObjects;
|
|
|
|
_memoryActivations = other->_memoryActivations;
|
|
|
|
_memoryTemporary = other->_memoryTemporary;
|
|
|
|
_memoryTotal = other->_memoryTotal;
|
|
|
|
|
|
|
|
_preparationTime = other->_preparationTime;
|
|
|
|
_executionTime = other->_executionTime;
|
|
|
|
_totalTime = other->_totalTime;
|
|
|
|
_shapeTime = other->_shapeTime;
|
|
|
|
_arrayTime = other->_arrayTime;
|
|
|
|
_inputTime = other->_inputTime;
|
2020-02-13 18:59:35 +01:00
|
|
|
|
|
|
|
_inputShapes = other->_inputShapes;
|
|
|
|
_outputShapes = other->_outputShapes;
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|