<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Overview</title><link>https://sourceforge.net/p/parallel-octave/wiki/Overview/</link><description>Recent changes to Overview</description><atom:link href="https://sourceforge.net/p/parallel-octave/wiki/Overview/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 09 Oct 2023 08:47:04 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/parallel-octave/wiki/Overview/feed" rel="self" type="application/rss+xml"/><item><title>Overview modified by ENGITEX</title><link>https://sourceforge.net/p/parallel-octave/wiki/Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -19,6 +19,8 @@
 (b) `myfunc` has not completed (an error has occured)
 This is why it is recommended to add an exit code as an output parameter if `myfunc` is "void".

+As a side note, Windows OS supports many CPUs and will distribute the load from several `parstart` calls in more or less optimal way.
+
 See also:
 [API reference]
 [System requirements]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Mon, 09 Oct 2023 08:47:04 -0000</pubDate><guid>https://sourceforge.netfe7882f8df45aa7e57fdfa67a4ac53a489d30f48</guid></item><item><title>Overview modified by ENGITEX</title><link>https://sourceforge.net/p/parallel-octave/wiki/Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -6,7 +6,7 @@
 But the call to `pararrayfun` itself is still synchronous.

 This library is supposed to be used in a similar way as asynchronous calls are used in Python and C#:
-`pid = parstart("myfunc", arg_in1, arg_in2, ...)`
+`pid = parstart("myfunc", argin1, argin2, ...)`
 This call returns quickly and the user can do other jobs.
 The current status of the `mufunc` call can be checked by `running(pid)`
 When the function has completed, `running(pid) == 0`
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Mon, 09 Oct 2023 08:29:01 -0000</pubDate><guid>https://sourceforge.netf721e2984aa7bf35d1171cf0306aea7996bad5ec</guid></item><item><title>Overview modified by ENGITEX</title><link>https://sourceforge.net/p/parallel-octave/wiki/Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,3 +1,24 @@
+### Overview
+
+The library lets a user make asynchronous function calls in GNU Octave.
+The existing [Parallel Package](https://wiki.octave.org/Parallel_package) allows parallel function calls in the following way:
+`output_vector = pararrayfun(n_cores, @myfunc, input_vector)`
+But the call to `pararrayfun` itself is still synchronous.
+
+This library is supposed to be used in a similar way as asynchronous calls are used in Python and C#:
+`pid = parstart("myfunc", arg_in1, arg_in2, ...)`
+This call returns quickly and the user can do other jobs.
+The current status of the `mufunc` call can be checked by `running(pid)`
+When the function has completed, `running(pid) == 0`
+and the output parameters from `myfunc` (if any) should be obtained by calling
+`d = get_data(pid)`
+
+The parameters will be packed in a structure `d`.
+An empty [](0x0) array is returned if
+(a) `myfunc` has no output parameters, or
+(b) `myfunc` has not completed (an error has occured)
+This is why it is recommended to add an exit code as an output parameter if `myfunc` is "void".
+
 See also:
 [API reference]
 [System requirements]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Mon, 09 Oct 2023 08:27:39 -0000</pubDate><guid>https://sourceforge.net237045081d44f59d65a72542cab15b102e93119e</guid></item><item><title>Overview modified by ENGITEX</title><link>https://sourceforge.net/p/parallel-octave/wiki/Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,4 +1,3 @@
-
 See also:
 [API reference]
 [System requirements]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Mon, 09 Oct 2023 07:21:47 -0000</pubDate><guid>https://sourceforge.net0c1f443c7946c32dae6becbf88fed62eaa7e93a4</guid></item><item><title>Overview modified by ENGITEX</title><link>https://sourceforge.net/p/parallel-octave/wiki/Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,4 @@
-Welcome to your wiki!

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/parallel-octave/wiki/markdown_syntax/) syntax.
-
-[[members limit=20]]
-[[download_button]]
+See also:
+[API reference]
+[System requirements]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Mon, 09 Oct 2023 07:20:58 -0000</pubDate><guid>https://sourceforge.net58d5821b938dfab68613df225210595370aba1f9</guid></item><item><title>Home modified by ENGITEX</title><link>https://sourceforge.net/p/parallel-octave/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/parallel-octave/wiki/markdown_syntax/" rel="nofollow"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
	&lt;ul class="md-users-list"&gt;
		&lt;li&gt;&lt;a href="/u/engitex/"&gt;ENGITEX&lt;/a&gt; (admin)&lt;/li&gt;
		
	&lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-6523a4eb50bd037d9970227e" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Mon, 09 Oct 2023 06:59:56 -0000</pubDate><guid>https://sourceforge.net7c793d10c420bc46cbb35a571ca1c9e65f32e888</guid></item></channel></rss>