[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: parallel 3.0.0 released
From: |
Thomas D. Dean |
Subject: |
Re: parallel 3.0.0 released |
Date: |
Mon, 13 Jul 2015 12:55:35 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 |
On 07/13/15 05:34, Carnë Draug wrote:
Hi everyone
a new release of the parallel package [1] is out, version 3.0.0, by Olaf Till.
A summary of important user-visible changes is also available online [2].
The parallel package provides functions for parallel execution of Octave
jobs.
octave 4.1.0+
I updated and parallel seems to work OK. However, I received several
warnings about depreciated features.
octave:118> pkg update
select.cc: In function 'octave_value_list Fselect(const
octave_value_list&, int)':
select.cc:113:43: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
for (i = 0; i < read_fids.length (); i++) {
^
select.cc:127:44: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
for (i = 0; i < write_fids.length (); i++) {
^
select.cc:141:45: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
for (i = 0; i < except_fids.length (); i++) {
^
select.cc:176:62: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
for (i = 0, act = 0; i < except_fids.length (); i++)
^
select.cc:180:46: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
i < except_fids.length (); i++)
^
select.cc:188:61: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
for (i = 0, act = 0; i < write_fids.length (); i++)
^
select.cc:192:45: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
i < write_fids.length (); i++)
^
select.cc:200:60: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
for (i = 0, act = 0; i < read_fids.length (); i++)
^
select.cc:204:44: warning: 'octave_idx_type Array<T>::length() const
[with T = double; octave_idx_type = int]' is deprecated (declared at
/usr/local/include/octave-4.1.0+/octave/../octave/Array.h:269)
[-Wdeprecated-declarations]
i < read_fids.length (); i++)
Tom Dean