Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
release 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiugh committed Mar 13, 2011
1 parent 2454773 commit 75d307f
Show file tree
Hide file tree
Showing 19 changed files with 152 additions and 708 deletions.
31 changes: 28 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,37 @@ README

Amstel is a framework for processing large-scale graphs, based on the BSP computational model.

RUN AMSTEL
==========

1. install java >= 1.5

2. get Ibis and setup ibis.properties (server address and pool name) along with log4j.properties (set log4j.logger.nl.vu.cs.amstel.master=info)

3. start the Ibis server

4. start the application by using the previously defined ibis server and port

RELEASE NOTES
=============

Release 0.1
-----------
March 13, 2011

This is the first release of the Amstel framework and it contains the basic functionality for running graph applications.
Outline of the features included:
- generic applications, with parameterized types for vertex value, edge value and messages
- combiners
- aggregators
- input: text file, binary file with outdegree and live graph generators
- applications: Maximum Value, Single Source Shortest Path, Semi Clustering


PACKAGE DESCRIPTION
===================

src/ - source code for the framework
graphs/ - examples of input data and scripts for generating graphs
docs/ - documentation/reports
proto/ - a prototype of Amstel, implemented on shared memory model (threads)
scripts/ - scripts for running certain applications like SSSP or SemiClustering
build.xml - ant build script

6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<project name="Ibis IPL examples" default="build" basedir=".">

<description>
Build file for the Ibis IPL applications.
Build file for Amstel framework
</description>

<!-- Global properties -->

<property environment="env" />
<property name="ibis" location="${env.IPL_HOME}" />

<property name="version-tag" value="" />
<property name="version-tag" value="0.1" />

<property name="src" location="src" />
<property name="tmp" location="tmp" />
<property name="lib" location="lib" />
<property name="jar" location="lib/amstel${version-tag}.jar" />
<property name="jar" location="lib/amstel-${version-tag}.jar" />

<target name="build" description="build the Amstel framework">
<!-- Clean up -->
Expand Down
9 changes: 9 additions & 0 deletions create_release
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

RELEASE=0.1
DIR=amstel-$RELEASE
rm -rf ./$DIR
mkdir $DIR
cp -r input maxval sssp semiclustering lib $DIR/
zip -r $DIR.zip $DIR/*
rm -rf ./$DIR
Binary file removed docs/ClaudiuDanGHEORGHE_Amstel_Report.pdf
Binary file not shown.
12 changes: 0 additions & 12 deletions docs/SCHEDULE

This file was deleted.

51 changes: 0 additions & 51 deletions graphs/convert-gt2amstel.py

This file was deleted.

148 changes: 0 additions & 148 deletions graphs/gen_graph.py

This file was deleted.

10 changes: 0 additions & 10 deletions graphs/small-ring-n10-e1.txt

This file was deleted.

Loading

0 comments on commit 75d307f

Please sign in to comment.