Workflows

Search filter terms
Filter by type
Filter by tag
Filter by user
Filter by licence
Filter by group
Results per page:
Sort by:
Showing 11 results. Use the filters on the left and the search box below to refine the results.
Tag: example User: Andreas Hoheisel Group: BauVOGrid

Workflow Workflow Pattern - Structured Loop (B) (2)

Thumb
This workflow is an alternative GWorkflowDL representation of a structured loop that updates the variable "x" in each iteration and which models the control flow separately from the index "i". Here a version of the graph with manual graph layout: This workflow is equivalent to the following pseudo code: x:=0; for ( i:=0; i<=99; i++) { x:=x+i; } x_result:=x; Please remark that this demonstration workflow does not invoke any external services at all. The c...

Created: 2008-12-09

Credits: User Andreas Hoheisel

Attributions: Workflow Workflow Pattern - Structured Loop

Workflow Workflow Pattern - Structured Loop (2)

Thumb
This workflow is a GWorkflowDL representation of a structured loop that updates the variable "x" in each iteration. This workflow is equivalent to the following pseudo code: x:=0; for ( i:=0; i<=99; i++) { x:=x+i; } x_result:=x; Please remark that this demonstration workflow does not invoke any external services at all. The calculation is done only by using the GWorkflowDL's syntax and semantics.

Created: 2008-12-09

Credits: User Andreas Hoheisel

Workflow Workflow Pattern - Structured Loop (C) (2)

Thumb
This workflow is a GWorkflowDL representation of a structured loop that counts from 0 to 99.   This workflow is equivalent to the following pseudo code: for ( i:=0; i Please remark that this demonstration workflow does not invoke any external services at all.

Created: 2008-12-09

Credits: User Andreas Hoheisel

Attributions: Workflow Workflow Pattern - Structured Loop (B)

Workflow Workflow Pattern - Simple Merge (XOR-Join) (1)

Thumb
This workflow is a GWorkflowDL representation of a simple merge (XOR Join) that invokes C when either A or B has been invoked. The structure of the GWorkflowDL representation of a simple merge is identical to the multi merge pattern!

Created: 2008-12-03 | Last updated: 2009-01-19

Credits: User Andreas Hoheisel

Workflow Workflow Pattern - Multi Choice (OR Split) (2)

Thumb
This workflow is a GWorkflowDL representation of a multi choice (OR Split) that invokes either A or B or A and B.

Created: 2008-12-09

Credits: User Andreas Hoheisel

Workflow Workflow Pattern - Exclusive Choice (XOR-S... (2)

Thumb
This workflow is a GWorkflowDL representation of an exclusive choice (XOR Split) that invokes either A or B. This workflow is equivalent to the following pseudo code: x = XOR_Split; if (x=="true") { end_A = A(x); } else { end_B = B(x); }

Created: 2008-12-09

Credits: User Andreas Hoheisel

Workflow Workflow Pattern - Synchronization (AND-Join) (2)

Thumb
This workflow is a GWorkflowDL representation of a synchronization (AND Join) that waits until A and B finish their execution. This workflow is equivalent to the following pseudo code: threadA = new Thread( end_A = A() ); threadB = new Thread( end_B = B() ); threadA.join(); threadB.join();

Created: 2009-01-19

Credits: User Andreas Hoheisel

Workflow Make 28 CPUh load on the Grid (1)

Thumb
This workflow makes 28 CPU hours load on a Grid. Therefore it calls 100 times (represented by 100 input tokens) the program "makeload", which makes 1000 Seconds load each. The processing is done recurrent, so you can use this workflow to benchmark the speedup of your Grid environment, or just to heat up your computer center... This workflow also serves as an example of a typical parameter study modeled with GWorkflowDL. Of cause this workflow can only be invoked with a X509 certif...

Created: 2008-11-25 | Last updated: 2008-12-17

Credits: User Andreas Hoheisel

Workflow GWorkflowDL: Generic execution of programs (1)

Thumb
This workflow is an example of the execution of an arbitrary command line program. This workflow transfers a tar.gz package containing the linux program "date" to a free Grid resource, unpacks, and executes it. After execution the URL to the file with the standard output is available on "stdout", the standard error on "stderr".

Created: 2008-11-25 | Last updated: 2008-11-25

Credits: User Andreas Hoheisel

Workflow Workflow Pattern - Parallel Split (AND-Split) (1)

Thumb
This workflow is a GWorkflowDL representation of a parallel split that invokes A and B recurrently without synchronization. This workflow is equivalent to the following pseudo code: new Thread( end_A = A() ); new Thread( end_B = B() );

Created: 2008-12-03 | Last updated: 2008-12-03

Credits: User Andreas Hoheisel

Results per page:
Sort by: