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
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef DEV_TESTS_TADDESCRIPTOR_H
|
|
|
|
#define DEV_TESTS_TADDESCRIPTOR_H
|
|
|
|
|
|
|
|
#include "ShapeDescriptor.h"
|
2020-03-02 10:49:41 +01:00
|
|
|
#include <system/dll.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
|
|
|
class ND4J_EXPORT TadDescriptor {
|
|
|
|
private:
|
|
|
|
ShapeDescriptor _originalShape;
|
|
|
|
|
|
|
|
std::vector<int> _axis;
|
|
|
|
|
|
|
|
bool _unitiesInShape;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit TadDescriptor(const Nd4jLong *originalShape, const int *dimensions, const int length, const bool keepUnitiesInShape = false);
|
|
|
|
explicit TadDescriptor(const ShapeDescriptor &descriptor, const std::vector<int> &dimensions, const bool keepUnitiesInShape = false);
|
|
|
|
explicit TadDescriptor(const TadDescriptor &other);
|
|
|
|
~TadDescriptor() = default;
|
|
|
|
|
|
|
|
// we use default copy assignment operator
|
|
|
|
TadDescriptor& operator=(const TadDescriptor& other) = default;
|
|
|
|
|
|
|
|
// we use default move assignment operator
|
|
|
|
TadDescriptor& operator=(TadDescriptor&& other) noexcept = default;
|
|
|
|
|
|
|
|
// equal to operator
|
|
|
|
bool operator==(const TadDescriptor &other) const;
|
|
|
|
|
|
|
|
// less than operator
|
|
|
|
bool operator<(const TadDescriptor &other) const;
|
|
|
|
|
|
|
|
std::vector<int>& axis();
|
|
|
|
ShapeDescriptor& originalShape();
|
2020-02-24 05:51:01 +01:00
|
|
|
ShapeDescriptor const& originalShapeConst() const;
|
2019-06-06 14:21:15 +02:00
|
|
|
bool areUnitiesinShape() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-02-24 05:51:01 +01:00
|
|
|
#ifndef __JAVACPP_HACK__
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
template<>
|
2020-03-02 10:49:41 +01:00
|
|
|
class ND4J_EXPORT hash<sd::TadDescriptor> {
|
2020-02-24 05:51:01 +01:00
|
|
|
public:
|
2020-03-02 10:49:41 +01:00
|
|
|
size_t operator()(const sd::TadDescriptor &k) const;
|
2020-02-24 05:51:01 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
#endif //DEV_TESTS_TADDESCRIPTOR_H
|