mirror of
https://github.com/marian-nmt/marian.git
synced 2024-11-04 14:04:24 +03:00
Merge branch 'master' of github.com:emjotde/Marian
This commit is contained in:
commit
0768c5058b
@ -178,12 +178,12 @@ class Tensor {
|
|||||||
return pimpl_->begin();
|
return pimpl_->begin();
|
||||||
}
|
}
|
||||||
|
|
||||||
auto end() -> decltype( pimpl_->begin() ) {
|
auto end() -> decltype( pimpl_->end() ) {
|
||||||
return pimpl_->begin();
|
return pimpl_->end();
|
||||||
}
|
}
|
||||||
|
|
||||||
auto end() const -> decltype( pimpl_->begin() ) {
|
auto end() const -> decltype( pimpl_->end() ) {
|
||||||
return pimpl_->begin();
|
return pimpl_->end();
|
||||||
}
|
}
|
||||||
|
|
||||||
const Shape& shape() const {
|
const Shape& shape() const {
|
||||||
|
Loading…
Reference in New Issue
Block a user