You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PDL (2.068) is not able to retrieve MXNet tensors. It can only retieve the first integer pointed to by the memory reference.
The rest of the array's content is completely set to zeros.
use strict;
use warnings;
use AI::MXNet qw(mx);
use AI::MXNet qw(nd);
use Data::Dump qw(dump);
my $x = mx->nd->array([5, 9]);
print $x->aspdl;
It prints [5,0] instead of [5, 9].
Previous PDL version 2.047 did not have this issue.
I figured out a temporary "solution" to the problem by removing PDL (2.068) and installing from source PDL version 2.047 and PDL::VectorValued::Utils (1.0.14) and PDL::CCS::Utils (1.23.17).
Please give a solution to the problem.
You can contact me by email if you need me to make tests on the new version of PDL.
The text was updated successfully, but these errors were encountered:
Hi friend,
PDL (2.068) is not able to retrieve MXNet tensors. It can only retieve the first integer pointed to by the memory reference.
The rest of the array's content is completely set to zeros.
use strict;
use warnings;
use AI::MXNet qw(mx);
use AI::MXNet qw(nd);
use Data::Dump qw(dump);
my $x = mx->nd->array([5, 9]);
print $x->aspdl;
It prints [5,0] instead of [5, 9].
Previous PDL version 2.047 did not have this issue.
I figured out a temporary "solution" to the problem by removing PDL (2.068) and installing from source PDL version 2.047 and PDL::VectorValued::Utils (1.0.14) and PDL::CCS::Utils (1.23.17).
Please give a solution to the problem.
You can contact me by email if you need me to make tests on the new version of PDL.
The text was updated successfully, but these errors were encountered: