mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-12-22 15:06:47 +01:00
MLPPTensor3 initial cleanup.
This commit is contained in:
parent
7a30524998
commit
ce49ed294b
@ -1,30 +1,35 @@
|
|||||||
|
|
||||||
#include "mlpp_tensor3.h"
|
#include "mlpp_tensor3.h"
|
||||||
|
|
||||||
/*
|
|
||||||
String MLPPTensor3::to_string() {
|
String MLPPTensor3::to_string() {
|
||||||
String str;
|
String str;
|
||||||
|
|
||||||
str += "[MLPPTensor3: \n";
|
str += "[MLPPTensor3: \n";
|
||||||
|
|
||||||
for (int y = 0; y < _size.y; ++y) {
|
for (int z = 0; z < _size.z; ++z) {
|
||||||
|
int z_ofs = _size.x * _size.y * z;
|
||||||
|
|
||||||
str += " [ ";
|
str += " [ ";
|
||||||
|
|
||||||
for (int x = 0; x < _size.x; ++x) {
|
for (int y = 0; y < _size.y; ++y) {
|
||||||
str += String::num(_data[_size.x * y + x]);
|
str += " [ ";
|
||||||
str += " ";
|
|
||||||
|
for (int x = 0; x < _size.x; ++x) {
|
||||||
|
str += String::num(_data[_size.x * y + x + z_ofs]);
|
||||||
|
str += " ";
|
||||||
|
}
|
||||||
|
|
||||||
|
str += " ]\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
str += "]\n";
|
str += "],\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
str += "]";
|
str += "]\n";
|
||||||
|
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
std::vector<real_t> MLPPTensor3::to_flat_std_vector() const {
|
std::vector<real_t> MLPPTensor3::to_flat_std_vector() const {
|
||||||
std::vector<real_t> ret;
|
std::vector<real_t> ret;
|
||||||
ret.resize(data_size());
|
ret.resize(data_size());
|
||||||
@ -33,46 +38,54 @@ std::vector<real_t> MLPPTensor3::to_flat_std_vector() const {
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MLPPTensor3::set_from_std_vectors(const std::vector<std::vector<real_t>> &p_from) {
|
void MLPPTensor3::set_from_std_vectors(const std::vector<std::vector<std::vector<real_t>>> &p_from) {
|
||||||
if (p_from.size() == 0) {
|
if (p_from.size() == 0) {
|
||||||
reset();
|
reset();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
resize(Size2i(p_from[0].size(), p_from.size()));
|
resize(Size3i(p_from[1].size(), p_from.size(), p_from[0].size()));
|
||||||
|
|
||||||
if (data_size() == 0) {
|
if (data_size() == 0) {
|
||||||
reset();
|
reset();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint32_t i = 0; i < p_from.size(); ++i) {
|
for (uint32_t k = 0; k < p_from.size(); ++k) {
|
||||||
const std::vector<real_t> &r = p_from[i];
|
const std::vector<std::vector<real_t>> &fm = p_from[k];
|
||||||
|
|
||||||
ERR_CONTINUE(r.size() != static_cast<uint32_t>(_size.x));
|
for (uint32_t i = 0; i < p_from.size(); ++i) {
|
||||||
|
const std::vector<real_t> &r = fm[i];
|
||||||
|
|
||||||
int start_index = i * _size.x;
|
ERR_CONTINUE(r.size() != static_cast<uint32_t>(_size.x));
|
||||||
|
|
||||||
const real_t *from_ptr = &r[0];
|
int start_index = i * _size.x;
|
||||||
for (int j = 0; j < _size.x; j++) {
|
|
||||||
_data[start_index + j] = from_ptr[j];
|
const real_t *from_ptr = &r[0];
|
||||||
|
for (int j = 0; j < _size.x; j++) {
|
||||||
|
_data[start_index + j] = from_ptr[j];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::vector<real_t>> MLPPTensor3::to_std_vector() {
|
std::vector<std::vector<std::vector<real_t>>> MLPPTensor3::to_std_vector() {
|
||||||
std::vector<std::vector<real_t>> ret;
|
std::vector<std::vector<std::vector<real_t>>> ret;
|
||||||
|
|
||||||
ret.resize(_size.y);
|
ret.resize(_size.z);
|
||||||
|
|
||||||
for (int i = 0; i < _size.y; ++i) {
|
for (int k = 0; k < _size.z; ++k) {
|
||||||
std::vector<real_t> row;
|
ret[k].resize(_size.y);
|
||||||
|
|
||||||
for (int j = 0; j < _size.x; ++j) {
|
for (int i = 0; i < _size.y; ++i) {
|
||||||
row.push_back(_data[calculate_index(i, j)]);
|
std::vector<real_t> row;
|
||||||
|
|
||||||
|
for (int j = 0; j < _size.x; ++j) {
|
||||||
|
row.push_back(_data[calculate_index(i, j, 1)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
ret[k][i] = row;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret[i] = row;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
@ -91,12 +104,11 @@ void MLPPTensor3::set_row_std_vector(int p_index_y, const std::vector<real_t> &p
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MLPPTensor3::MLPPTensor3(const std::vector<std::vector<real_t>> &p_from) {
|
MLPPTensor3::MLPPTensor3(const std::vector<std::vector<std::vector<real_t>>> &p_from) {
|
||||||
_data = NULL;
|
_data = NULL;
|
||||||
|
|
||||||
set_from_std_vectors(p_from);
|
set_from_std_vectors(p_from);
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
void MLPPTensor3::_bind_methods() {
|
void MLPPTensor3::_bind_methods() {
|
||||||
/*
|
/*
|
||||||
|
@ -19,7 +19,6 @@ class MLPPTensor3 : public Reference {
|
|||||||
GDCLASS(MLPPTensor3, Reference);
|
GDCLASS(MLPPTensor3, Reference);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/*
|
|
||||||
real_t *ptrw() {
|
real_t *ptrw() {
|
||||||
return _data;
|
return _data;
|
||||||
}
|
}
|
||||||
@ -28,6 +27,7 @@ public:
|
|||||||
return _data;
|
return _data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
_FORCE_INLINE_ void add_row(const Vector<real_t> &p_row) {
|
_FORCE_INLINE_ void add_row(const Vector<real_t> &p_row) {
|
||||||
if (p_row.size() == 0) {
|
if (p_row.size() == 0) {
|
||||||
return;
|
return;
|
||||||
@ -197,21 +197,22 @@ public:
|
|||||||
SWAP(_data[ind1_start + i], _data[ind2_start + i]);
|
SWAP(_data[ind1_start + i], _data[ind2_start + i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
_FORCE_INLINE_ void clear() { resize(Size2i()); }
|
_FORCE_INLINE_ void clear() { resize(Size3i()); }
|
||||||
_FORCE_INLINE_ void reset() {
|
_FORCE_INLINE_ void reset() {
|
||||||
if (_data) {
|
if (_data) {
|
||||||
memfree(_data);
|
memfree(_data);
|
||||||
_data = NULL;
|
_data = NULL;
|
||||||
_size = Vector2i();
|
_size = Size3i();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ bool empty() const { return data_size() == 0; }
|
_FORCE_INLINE_ bool empty() const { return _size == Size3i(); }
|
||||||
_FORCE_INLINE_ int data_size() const { return _size.x * _size.y; }
|
_FORCE_INLINE_ int data_size() const { return _size.x * _size.y * _size.z; }
|
||||||
_FORCE_INLINE_ Size2i size() const { return _size; }
|
_FORCE_INLINE_ Size3i size() const { return _size; }
|
||||||
|
|
||||||
void resize(const Size2i &p_size) {
|
void resize(const Size3i &p_size) {
|
||||||
_size = p_size;
|
_size = p_size;
|
||||||
|
|
||||||
int ds = data_size();
|
int ds = data_size();
|
||||||
@ -229,8 +230,8 @@ public:
|
|||||||
CRASH_COND_MSG(!_data, "Out of memory");
|
CRASH_COND_MSG(!_data, "Out of memory");
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ int calculate_index(int p_index_y, int p_index_x) const {
|
_FORCE_INLINE_ int calculate_index(int p_index_y, int p_index_x, int p_index_z) const {
|
||||||
return p_index_y * _size.x + p_index_x;
|
return p_index_y * _size.x + p_index_x + _size.x * _size.y * p_index_z;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ const real_t &operator[](int p_index) const {
|
_FORCE_INLINE_ const real_t &operator[](int p_index) const {
|
||||||
@ -242,42 +243,48 @@ public:
|
|||||||
return _data[p_index];
|
return _data[p_index];
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ real_t get_element(int p_index_y, int p_index_x) const {
|
_FORCE_INLINE_ real_t get_element(int p_index_y, int p_index_x, int p_index_z) const {
|
||||||
ERR_FAIL_INDEX_V(p_index_x, _size.x, 0);
|
ERR_FAIL_INDEX_V(p_index_x, _size.x, 0);
|
||||||
ERR_FAIL_INDEX_V(p_index_y, _size.y, 0);
|
ERR_FAIL_INDEX_V(p_index_y, _size.y, 0);
|
||||||
|
ERR_FAIL_INDEX_V(p_index_z, _size.z, 0);
|
||||||
|
|
||||||
return _data[p_index_y * _size.x + p_index_x];
|
return _data[p_index_y * _size.x + p_index_x + _size.x * _size.y * p_index_z];
|
||||||
}
|
}
|
||||||
_FORCE_INLINE_ real_t get_element(int p_index_y, int p_index_x) {
|
_FORCE_INLINE_ real_t get_element(int p_index_y, int p_index_x, int p_index_z) {
|
||||||
ERR_FAIL_INDEX_V(p_index_x, _size.x, 0);
|
ERR_FAIL_INDEX_V(p_index_x, _size.x, 0);
|
||||||
ERR_FAIL_INDEX_V(p_index_y, _size.y, 0);
|
ERR_FAIL_INDEX_V(p_index_y, _size.y, 0);
|
||||||
|
ERR_FAIL_INDEX_V(p_index_z, _size.z, 0);
|
||||||
|
|
||||||
return _data[p_index_y * _size.x + p_index_x];
|
return _data[p_index_y * _size.x + p_index_x + _size.x * _size.y * p_index_z];
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ real_t get_element_bind(int p_index_y, int p_index_x) const {
|
_FORCE_INLINE_ real_t get_element_bind(int p_index_y, int p_index_x, int p_index_z) const {
|
||||||
ERR_FAIL_INDEX_V(p_index_x, _size.x, 0);
|
ERR_FAIL_INDEX_V(p_index_x, _size.x, 0);
|
||||||
ERR_FAIL_INDEX_V(p_index_y, _size.y, 0);
|
ERR_FAIL_INDEX_V(p_index_y, _size.y, 0);
|
||||||
|
ERR_FAIL_INDEX_V(p_index_z, _size.z, 0);
|
||||||
|
|
||||||
return static_cast<real_t>(_data[p_index_y * _size.x + p_index_x]);
|
return static_cast<real_t>(_data[p_index_y * _size.x + p_index_x + _size.x * _size.y * p_index_z]);
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void set_element(int p_index_y, int p_index_x, real_t p_val) {
|
_FORCE_INLINE_ void set_element(int p_index_y, int p_index_x, int p_index_z, real_t p_val) {
|
||||||
ERR_FAIL_INDEX(p_index_x, _size.x);
|
ERR_FAIL_INDEX(p_index_x, _size.x);
|
||||||
ERR_FAIL_INDEX(p_index_y, _size.y);
|
ERR_FAIL_INDEX(p_index_y, _size.y);
|
||||||
|
ERR_FAIL_INDEX(p_index_z, _size.z);
|
||||||
|
|
||||||
_data[p_index_y * _size.x + p_index_x] = p_val;
|
_data[p_index_y * _size.x + p_index_x + _size.x * _size.y * p_index_z] = p_val;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void set_element_bind(int p_index_y, int p_index_x, real_t p_val) {
|
_FORCE_INLINE_ void set_element_bind(int p_index_y, int p_index_x, int p_index_z, real_t p_val) {
|
||||||
ERR_FAIL_INDEX(p_index_x, _size.x);
|
ERR_FAIL_INDEX(p_index_x, _size.x);
|
||||||
ERR_FAIL_INDEX(p_index_y, _size.y);
|
ERR_FAIL_INDEX(p_index_y, _size.y);
|
||||||
|
ERR_FAIL_INDEX(p_index_z, _size.z);
|
||||||
|
|
||||||
_data[p_index_y * _size.x + p_index_x] = p_val;
|
_data[p_index_y * _size.x + p_index_x + _size.x * _size.y * p_index_z] = p_val;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ Vector<real_t> get_row_vector(int p_index_y) {
|
_FORCE_INLINE_ Vector<real_t> get_row_vector(int p_index_y, int p_index_z) {
|
||||||
ERR_FAIL_INDEX_V(p_index_y, _size.y, Vector<real_t>());
|
ERR_FAIL_INDEX_V(p_index_y, _size.y, Vector<real_t>());
|
||||||
|
ERR_FAIL_INDEX_V(p_index_z, _size.z, Vector<real_t>());
|
||||||
|
|
||||||
Vector<real_t> ret;
|
Vector<real_t> ret;
|
||||||
|
|
||||||
@ -298,8 +305,9 @@ public:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ PoolRealArray get_row_pool_vector(int p_index_y) {
|
_FORCE_INLINE_ PoolRealArray get_row_pool_vector(int p_index_y, int p_index_z) {
|
||||||
ERR_FAIL_INDEX_V(p_index_y, _size.y, PoolRealArray());
|
ERR_FAIL_INDEX_V(p_index_y, _size.y, PoolRealArray());
|
||||||
|
ERR_FAIL_INDEX_V(p_index_z, _size.z, PoolRealArray());
|
||||||
|
|
||||||
PoolRealArray ret;
|
PoolRealArray ret;
|
||||||
|
|
||||||
@ -309,7 +317,7 @@ public:
|
|||||||
|
|
||||||
ret.resize(_size.x);
|
ret.resize(_size.x);
|
||||||
|
|
||||||
int ind_start = p_index_y * _size.x;
|
int ind_start = p_index_y * _size.x + _size.x * _size.y * p_index_z;
|
||||||
|
|
||||||
PoolRealArray::Write w = ret.write();
|
PoolRealArray::Write w = ret.write();
|
||||||
real_t *row_ptr = w.ptr();
|
real_t *row_ptr = w.ptr();
|
||||||
@ -321,8 +329,9 @@ public:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ Ref<MLPPVector> get_row_mlpp_vector(int p_index_y) {
|
_FORCE_INLINE_ Ref<MLPPVector> get_row_mlpp_vector(int p_index_y, int p_index_z) {
|
||||||
ERR_FAIL_INDEX_V(p_index_y, _size.y, Ref<MLPPVector>());
|
ERR_FAIL_INDEX_V(p_index_y, _size.y, Ref<MLPPVector>());
|
||||||
|
ERR_FAIL_INDEX_V(p_index_z, _size.z, Ref<MLPPVector>());
|
||||||
|
|
||||||
Ref<MLPPVector> ret;
|
Ref<MLPPVector> ret;
|
||||||
ret.instance();
|
ret.instance();
|
||||||
@ -333,7 +342,7 @@ public:
|
|||||||
|
|
||||||
ret->resize(_size.x);
|
ret->resize(_size.x);
|
||||||
|
|
||||||
int ind_start = p_index_y * _size.x;
|
int ind_start = p_index_y * _size.x + _size.x * _size.y * p_index_z;
|
||||||
|
|
||||||
real_t *row_ptr = ret->ptrw();
|
real_t *row_ptr = ret->ptrw();
|
||||||
|
|
||||||
@ -344,15 +353,16 @@ public:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void get_row_into_mlpp_vector(int p_index_y, Ref<MLPPVector> target) const {
|
_FORCE_INLINE_ void get_row_into_mlpp_vector(int p_index_y, int p_index_z, Ref<MLPPVector> target) const {
|
||||||
ERR_FAIL_COND(!target.is_valid());
|
ERR_FAIL_COND(!target.is_valid());
|
||||||
ERR_FAIL_INDEX(p_index_y, _size.y);
|
ERR_FAIL_INDEX(p_index_y, _size.y);
|
||||||
|
ERR_FAIL_INDEX(p_index_z, _size.z);
|
||||||
|
|
||||||
if (unlikely(target->size() != _size.x)) {
|
if (unlikely(target->size() != _size.x)) {
|
||||||
target->resize(_size.x);
|
target->resize(_size.x);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ind_start = p_index_y * _size.x;
|
int ind_start = p_index_y * _size.x + _size.x * _size.y * p_index_z;
|
||||||
|
|
||||||
real_t *row_ptr = target->ptrw();
|
real_t *row_ptr = target->ptrw();
|
||||||
|
|
||||||
@ -361,11 +371,12 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void set_row_vector(int p_index_y, const Vector<real_t> &p_row) {
|
_FORCE_INLINE_ void set_row_vector(int p_index_y, int p_index_z, const Vector<real_t> &p_row) {
|
||||||
ERR_FAIL_COND(p_row.size() != _size.x);
|
ERR_FAIL_COND(p_row.size() != _size.x);
|
||||||
ERR_FAIL_INDEX(p_index_y, _size.y);
|
ERR_FAIL_INDEX(p_index_y, _size.y);
|
||||||
|
ERR_FAIL_INDEX(p_index_z, _size.z);
|
||||||
|
|
||||||
int ind_start = p_index_y * _size.x;
|
int ind_start = p_index_y * _size.x + _size.x * _size.y * p_index_z;
|
||||||
|
|
||||||
const real_t *row_ptr = p_row.ptr();
|
const real_t *row_ptr = p_row.ptr();
|
||||||
|
|
||||||
@ -374,11 +385,12 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void set_row_pool_vector(int p_index_y, const PoolRealArray &p_row) {
|
_FORCE_INLINE_ void set_row_pool_vector(int p_index_y, int p_index_z, const PoolRealArray &p_row) {
|
||||||
ERR_FAIL_COND(p_row.size() != _size.x);
|
ERR_FAIL_COND(p_row.size() != _size.x);
|
||||||
ERR_FAIL_INDEX(p_index_y, _size.y);
|
ERR_FAIL_INDEX(p_index_y, _size.y);
|
||||||
|
ERR_FAIL_INDEX(p_index_z, _size.z);
|
||||||
|
|
||||||
int ind_start = p_index_y * _size.x;
|
int ind_start = p_index_y * _size.x + _size.x * _size.y * p_index_z;
|
||||||
|
|
||||||
PoolRealArray::Read r = p_row.read();
|
PoolRealArray::Read r = p_row.read();
|
||||||
const real_t *row_ptr = r.ptr();
|
const real_t *row_ptr = r.ptr();
|
||||||
@ -388,12 +400,13 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void set_row_mlpp_vector(int p_index_y, const Ref<MLPPVector> &p_row) {
|
_FORCE_INLINE_ void set_row_mlpp_vector(int p_index_y, int p_index_z, const Ref<MLPPVector> &p_row) {
|
||||||
ERR_FAIL_COND(!p_row.is_valid());
|
ERR_FAIL_COND(!p_row.is_valid());
|
||||||
ERR_FAIL_COND(p_row->size() != _size.x);
|
ERR_FAIL_COND(p_row->size() != _size.x);
|
||||||
ERR_FAIL_INDEX(p_index_y, _size.y);
|
ERR_FAIL_INDEX(p_index_y, _size.y);
|
||||||
|
ERR_FAIL_INDEX(p_index_z, _size.z);
|
||||||
|
|
||||||
int ind_start = p_index_y * _size.x;
|
int ind_start = p_index_y * _size.x + _size.x * _size.y * p_index_z;
|
||||||
|
|
||||||
const real_t *row_ptr = p_row->ptr();
|
const real_t *row_ptr = p_row->ptr();
|
||||||
|
|
||||||
@ -455,17 +468,27 @@ public:
|
|||||||
_FORCE_INLINE_ void set_from_mlpp_matrix(const Ref<MLPPMatrix> &p_from) {
|
_FORCE_INLINE_ void set_from_mlpp_matrix(const Ref<MLPPMatrix> &p_from) {
|
||||||
ERR_FAIL_COND(!p_from.is_valid());
|
ERR_FAIL_COND(!p_from.is_valid());
|
||||||
|
|
||||||
//resize(p_from->size());
|
Size2i mat_size = p_from->size();
|
||||||
//for (int i = 0; i < p_from->data_size(); ++i) {
|
resize(Size3i(mat_size.x, mat_size.y, 1));
|
||||||
//_data[i] = p_from->_data[i];
|
|
||||||
//}
|
int ds = p_from->data_size();
|
||||||
|
const real_t *ptr = p_from->ptr();
|
||||||
|
|
||||||
|
for (int i = 0; i < ds; ++i) {
|
||||||
|
_data[i] = ptr[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void set_from_mlpp_matrixr(const MLPPMatrix &p_from) {
|
_FORCE_INLINE_ void set_from_mlpp_matrixr(const MLPPMatrix &p_from) {
|
||||||
//resize(p_from.size());
|
Size2i mat_size = p_from.size();
|
||||||
//for (int i = 0; i < p_from.data_size(); ++i) {
|
resize(Size3i(mat_size.x, mat_size.y, 1));
|
||||||
//_data[i] = p_from._data[i];
|
|
||||||
//}
|
int ds = p_from.data_size();
|
||||||
|
const real_t *ptr = p_from.ptr();
|
||||||
|
|
||||||
|
for (int i = 0; i < ds; ++i) {
|
||||||
|
_data[i] = ptr[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ void set_from_mlpp_vectors(const Vector<Ref<MLPPVector>> &p_from) {
|
_FORCE_INLINE_ void set_from_mlpp_vectors(const Vector<Ref<MLPPVector>> &p_from) {
|
||||||
@ -479,7 +502,7 @@ public:
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
resize(Size2i(p_from[0]->size(), p_from.size()));
|
resize(Size3i(p_from[0]->size(), p_from.size(), 1));
|
||||||
|
|
||||||
if (data_size() == 0) {
|
if (data_size() == 0) {
|
||||||
reset();
|
reset();
|
||||||
@ -514,7 +537,7 @@ public:
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
resize(Size2i(v0->size(), p_from.size()));
|
resize(Size3i(v0->size(), p_from.size(), 1));
|
||||||
|
|
||||||
if (data_size() == 0) {
|
if (data_size() == 0) {
|
||||||
reset();
|
reset();
|
||||||
@ -542,7 +565,7 @@ public:
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
resize(Size2i(p_from[0].size(), p_from.size()));
|
resize(Size3i(p_from[0].size(), p_from.size(), 1));
|
||||||
|
|
||||||
if (data_size() == 0) {
|
if (data_size() == 0) {
|
||||||
reset();
|
reset();
|
||||||
@ -571,7 +594,7 @@ public:
|
|||||||
|
|
||||||
PoolRealArray p0arr = p_from[0];
|
PoolRealArray p0arr = p_from[0];
|
||||||
|
|
||||||
resize(Size2i(p0arr.size(), p_from.size()));
|
resize(Size3i(p0arr.size(), p_from.size(), 1));
|
||||||
|
|
||||||
if (data_size() == 0) {
|
if (data_size() == 0) {
|
||||||
reset();
|
reset();
|
||||||
@ -614,22 +637,25 @@ public:
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
//String to_string();
|
String to_string();
|
||||||
|
|
||||||
_FORCE_INLINE_ MLPPTensor3() {
|
_FORCE_INLINE_ MLPPTensor3() {
|
||||||
_data = NULL;
|
_data = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
_FORCE_INLINE_ MLPPTensor3(const MLPPMatrix &p_from) {
|
_FORCE_INLINE_ MLPPTensor3(const MLPPMatrix &p_from) {
|
||||||
_data = NULL;
|
_data = NULL;
|
||||||
|
|
||||||
//resize(p_from.size());
|
Size2i mat_size = p_from.size();
|
||||||
//for (int i = 0; i < p_from.data_size(); ++i) {
|
resize(Size3i(mat_size.x, mat_size.y, 1));
|
||||||
// _data[i] = p_from._data[i];
|
|
||||||
//}
|
int ds = p_from.data_size();
|
||||||
|
const real_t *ptr = p_from.ptr();
|
||||||
|
|
||||||
|
for (int i = 0; i < ds; ++i) {
|
||||||
|
_data[i] = ptr[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MLPPTensor3(const Vector<Vector<real_t>> &p_from) {
|
MLPPTensor3(const Vector<Vector<real_t>> &p_from) {
|
||||||
@ -650,19 +676,18 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO: These are temporary
|
// TODO: These are temporary
|
||||||
std::vector<real_t> to_flat_std_vector() const;
|
std::vector<real_t> to_flat_std_vector() const;
|
||||||
void set_from_std_vectors(const std::vector<std::vector<real_t>> &p_from);
|
void set_from_std_vectors(const std::vector<std::vector<std::vector<real_t>>> &p_from);
|
||||||
std::vector<std::vector<real_t>> to_std_vector();
|
std::vector<std::vector<std::vector<real_t>>> to_std_vector();
|
||||||
void set_row_std_vector(int p_index_y, const std::vector<real_t> &p_row);
|
void set_row_std_vector(int p_index_y, const std::vector<real_t> &p_row);
|
||||||
MLPPTensor3(const std::vector<std::vector<real_t>> &p_from);
|
MLPPTensor3(const std::vector<std::vector<std::vector<real_t>>> &p_from);
|
||||||
*/
|
|
||||||
protected:
|
protected:
|
||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
Size2i _size;
|
Size3i _size;
|
||||||
real_t *_data;
|
real_t *_data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user