cavis/libnd4j/include/helpers/impl/OpBenchmark.cpp

133 lines
3.5 KiB
C++

/*
* ******************************************************************************
* *
* *
* * 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.
* *
* * See the NOTICE file distributed with this work for additional
* * information regarding copyright ownership.
* * 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
* *****************************************************************************
*/
//
// Created by raver on 2/28/2019.
//
#include "../OpBenchmark.h"
namespace sd {
OpBenchmark::OpBenchmark(std::string name, NDArray *x, NDArray *y, NDArray *z) {
_testName = name;
_x = x;
_y = y;
_z = z;
}
OpBenchmark::OpBenchmark(std::string name, NDArray *x, NDArray *z) {
_testName = name;
_x = x;
_z = z;
}
OpBenchmark::OpBenchmark(std::string name, NDArray *x, NDArray *z, std::initializer_list<int> axis) : OpBenchmark(name, x, nullptr, z, axis){ }
OpBenchmark::OpBenchmark(std::string name, NDArray *x, NDArray *y, NDArray *z, std::initializer_list<int> axis){
_testName = name;
_x = x;
_y = y;
_z = z;
_axis = std::vector<int>(axis);
if (_axis.size() > 1)
std::sort(_axis.begin(), _axis.end());
}
OpBenchmark::OpBenchmark(std::string name, NDArray *x, NDArray *z, std::vector<int> axis) : OpBenchmark(name, x, nullptr, z, axis) { }
OpBenchmark::OpBenchmark(std::string name, NDArray *x, NDArray *y, NDArray *z, std::vector<int> axis) {
_testName = name;
_x = x;
_y = y;
_z = z;
_axis = axis;
if (_axis.size() > 1)
std::sort(_axis.begin(), _axis.end());
}
NDArray& OpBenchmark::x() {
return *_x;
}
int OpBenchmark::opNum() {
return _opNum;
}
std::string OpBenchmark::testName(){
return _testName;
}
void OpBenchmark::setOpNum(int opNum) {
_opNum = opNum;
}
void OpBenchmark::setTestName(std::string name){
_testName = name;
}
void OpBenchmark::setX(NDArray *array) {
_x = array;
}
void OpBenchmark::setY(NDArray *array) {
_y = array;
}
void OpBenchmark::setZ(NDArray *array) {
_z = array;
}
void OpBenchmark::setAxis(std::vector<int> axis) {
_axis = axis;
}
void OpBenchmark::setAxis(std::initializer_list<int> axis) {
_axis = axis;
}
std::vector<int> OpBenchmark::getAxis(){
return _axis;
}
std::string OpBenchmark::extra() {
return "N/A";
}
std::string OpBenchmark::shape() {
if (_x != nullptr)
return ShapeUtils::shapeAsString(_x);
else if (_z != nullptr)
return ShapeUtils::shapeAsString(_z);
else
return "N/A";
}
std::string OpBenchmark::dataType() {
if (_x != nullptr)
return DataTypeUtils::asString(_x->dataType());
else if (_z != nullptr)
return DataTypeUtils::asString(_z->dataType());
else
return "N/A";
}
}