Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-orbit
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Katerina Roukounaki
cloud-orbit
Commits
c26dfb63
Commit
c26dfb63
authored
Nov 13, 2014
by
Aggelos Giantsios
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Sequential module
parent
e1475ce4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
97 additions
and
0 deletions
+97
-0
Sequential.hs
Sequential.hs
+97
-0
No files found.
Sequential.hs
0 → 100644
View file @
c26dfb63
--
-- orbit-int sequential implementation
--
module
Sequential
(
orbit
)
where
import
Table
(
Freq
,
VTable
,
Vertex
,
get_freq
,
freq_to_stat
,
is_member
,
insert
,
new
,
to_list
)
import
Data.Hashable
(
hash
)
import
Data.Dequeue
(
BankersDequeue
,
fromList
,
popFront
,
pushBack
)
import
Master
(
now
)
type
Conf
=
([
Vertex
->
Vertex
],
Int
)
-- DATA
-- Static Machine Configuration:
-- {Gs, --list of generators
-- TableSize} --hash table size (ie. #slots)
--
-- Statistics:
-- List of pairs where the first component is an atom, the second
-- some data. Part of the data is the fill frequency of the table
-- (a list whose ith element indicates frequency of filling degree i).
-- compute orbit of elements in list Xs under list of generators Gs,
-- where the hash table is of size TableSize.
-- The function returns a pair consisting of the computed orbit and a singleton
-- list of statistics (mainly runtime and fill degree of the table).
orbit
::
[
Vertex
->
Vertex
]
->
[
Vertex
]
->
Int
->
([
Vertex
],
[[(
String
,
String
)]])
orbit
gs
xs
tableSize
=
(
orbit
,
[
stat
])
-- assemble static configuration
where
staticMachConf
=
mk_static_mach_conf
gs
tableSize
-- initialise hash table and work queue
table
=
new
tableSize
queue
=
fromList
xs
-- start wall clock timer
startTime
=
now
-- start vertex server and compute orbit
(
finalTable
,
vertsRecvd
)
=
vertex_server
staticMachConf
table
queue
0
-- measure elapsed time (in milliseconds)
elapsedTime
=
now
-
startTime
-- return result
orbit
=
to_list
finalTable
stat
=
seq_stats
elapsedTime
(
get_freq
finalTable
)
vertsRecvd
-- main loop working off work Queue;
-- StaticMachConf -- static data
-- Table -- hash table holding vertices
-- Queue -- work queue
-- VertsRecvd -- number of vertices removed from the Queue so far
vertex_server
::
Conf
->
VTable
->
BankersDequeue
Vertex
->
Int
->
(
VTable
,
Int
)
vertex_server
staticMachConf
table
queue
vertsRecvd
=
case
popFront
queue
of
(
Nothing
,
_
)
->
(
table
,
vertsRecvd
)
(
Just
x
,
queue1
)
->
vertex_server
staticMachConf
newTable
newQueue
(
vertsRecvd
+
1
)
where
(
newTable
,
newQueue
)
=
handle_vertex
staticMachConf
x
table
queue1
-- handle_vertex checks whether vertex X is stored in Table;
-- if not, it is in inserted and the images of the generators
-- are pushed into the work queue.
handle_vertex
::
Conf
->
Vertex
->
VTable
->
BankersDequeue
Vertex
->
(
VTable
,
BankersDequeue
Vertex
)
handle_vertex
staticMachConf
x
table
queue
=
case
is_member
x
slot
table
of
-- check whether X is already in Table
-- X already in table; do nothing
True
->
(
table
,
queue
)
-- X not in table
False
->
(
newTable
,
newQueue
)
-- return updated table and queue
where
newTable
=
insert
x
slot
table
-- insert X at Slot
xs
=
[
g
x
|
g
<-
gs
]
-- compute images of X under generators Gs
newQueue
=
foldl
pushBack
queue
xs
-- enquene Xs
where
gs
=
get_gens
staticMachConf
slot
=
hash_vertex
staticMachConf
x
-- compute Slot
-- hash_vertex computes the hash table slot of vertex X
hash_vertex
::
Conf
->
Vertex
->
Int
hash_vertex
staticMachConf
x
=
hsh
`
rem
`
tableSize
where
tableSize
=
get_table_size
staticMachConf
hsh
=
abs
$
hash
x
-------------------------------------------------------------------------------
-- auxiliary functions
-- functions operating on the StaticMachConf
mk_static_mach_conf
::
[
Vertex
->
Vertex
]
->
Int
->
Conf
mk_static_mach_conf
gs
tableSize
=
(
gs
,
tableSize
)
get_gens
::
Conf
->
[
Vertex
->
Vertex
]
get_gens
staticMachConf
=
fst
staticMachConf
get_table_size
::
Conf
->
Int
get_table_size
staticMachConf
=
snd
staticMachConf
-- produce readable statistics
seq_stats
::
Int
->
Freq
->
Int
->
[(
String
,
String
)]
seq_stats
elapsedTime
frequency
vertsRecvd
=
(
"wall_time"
,
show
elapsedTime
)
:
(
"vertices_recvd"
,
show
vertsRecvd
)
:
freq_to_stat
frequency
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment