Paraiso-0.3.1.0: a code generator for partial differential equations solvers.

Safe HaskellSafe-Infered

Language.Paraiso.OM.Realm

Description

The Realm represents how the data reside in Orthotope Machines. Array data are n-dimensional array that is distributed among nodes. Scalar data are single-point value, possibly reside in the master node. . Be noted that Array and Scalar were initially called Local and Global. but I opted for more conventional notation. If you find any historical notation remaining, please let me know!

Synopsis

Documentation

data TScalar Source

Type-level representation of Scalar realm

Constructors

TScalar 

data TArray Source

Type-level representation of Array realm

Constructors

TArray 

class TRealm a whereSource

Type-level representations of realm

data Realm Source

Value-level representations of realm

Constructors

Scalar

Value-level representation of Scalar realm

Array

Value-level representation of Array realm

Instances

Eq Realm 
Show Realm 
Realmable Realm

Realmable instances

class Realmable a whereSource

Means of obtaining value-level realm from things

Methods

realm :: a -> RealmSource

Instances