Presentation is loading. Please wait.

Presentation is loading. Please wait.

WSIM Towards a software framework for modeling the WISDOM architecture Elias Athanasopoulos ICS-FORTH Cork, January 2007.

Similar presentations


Presentation on theme: "WSIM Towards a software framework for modeling the WISDOM architecture Elias Athanasopoulos ICS-FORTH Cork, January 2007."— Presentation transcript:

1 WSIM Towards a software framework for modeling the WISDOM architecture Elias Athanasopoulos elathan@ics.forth.gr ICS-FORTH Cork, January 2007

2 -2- Elias Athanasopoulos, ICS-FORTH WSIM Roadmap ● Goals ● Architecture ● Building ● Demo ● Open issues

3 -3- Elias Athanasopoulos, ICS-FORTH WSIM Goals ● Goals ● Architecture ● Building ● Demo ● Open issues

4 -4- Elias Athanasopoulos, ICS-FORTH WSIM Initial Goals ● Develop a modular software platform ● Model optical components and examine their behaviour ● Simulate constructs based on combinations of different components ● Model everything under time constraints ● Build a platform for SAPI development ● Develop new security algorithms and test their efficiency

5 -5- Elias Athanasopoulos, ICS-FORTH WSIM Architecture ● Goals ● Architecture ● Building ● Demo ● Open issues

6 -6- Elias Athanasopoulos, ICS-FORTH WSIM Architecture Overview ● Developed in C++ (OO design) ● Ability to attach different modules in the main engine ● Ability to inspect each module's activity over time ● Ability to inspect the interaction between different modules

7 -7- Elias Athanasopoulos, ICS-FORTH WSIM In a nutshell Main Engine WSimulator() WNetworkFlow() WModule()....... SAPI

8 -8- Elias Athanasopoulos, ICS-FORTH WSIM Main Engine SOA-MZI Main Engine WSimulator() WNetworkFlow()..1000111... SOAMZI()..1110001..

9 -9- Elias Athanasopoulos, ICS-FORTH WSIM A Closer Look SOAMZI() A:...0111001011... C:...111111111... B: 10101 Y:...000001000... Optical pattern matching, proposed by Rod Webb (CIP). SOA 1 SOA 2 A B C Bandpass filter C

10 -10- Elias Athanasopoulos, ICS-FORTH WSIM From a code perspective... #include "../src/simulator.h" #include "../src/soa-mzi.h" int main(int argc, char **argv) { /* Create the simulator. */ WSimulator *sim; sim = new WSimulator(); /* Create the SOA-MZI module, and initialize it. */ SOAMZIModule *m; m = new SOAMZIModule(); m->SetPatSize(4); m->SetWinSize(15); m->SetPattern(9); /* Attach module to the simulator. */ sim->AttachModule(m); /* Run the module via the simulator. */ sim->Run(); /* Clean up and bye, bye. */ sim->DetachModule("SOA-MZI"); sim->Inspect(); delete sim; delete m; return 1; } Simulator Init: WSimulator *sim = new WSimulator(); Simulator Init: WSimulator *sim = new WSimulator(); SOA-MZI Init-Setup: SOAMZIModule *m = new SOAMZIModule(); m->SetPatSize(4); m->SetWinSize(15); m->SetPattern(9); SOA-MZI Init-Setup: SOAMZIModule *m = new SOAMZIModule(); m->SetPatSize(4); m->SetWinSize(15); m->SetPattern(9); Attach SOA-MZI and Run: sim->AttachModule(m); sim->Run(); Attach SOA-MZI and Run: sim->AttachModule(m); sim->Run();

11 -11- Elias Athanasopoulos, ICS-FORTH WSIM Building ● Goals ● Architecture ● Building ● Demo ● Open issues

12 -12- Elias Athanasopoulos, ICS-FORTH WSIM How to build/test? ● Uncompress the distribution: % tar -xzvf wsim-ir.tar.gz ● Build the simulator: % make ● Test available modules: %./run.sh Usage:./run.sh Available modules: soa-mzi ● %./run.sh soa-mzi

13 -13- Elias Athanasopoulos, ICS-FORTH WSIM Demo ● Goals ● Architecture ● Building ● Demo ● Open issues

14 -14- Elias Athanasopoulos, ICS-FORTH WSIM Testing the SOA-MZI module... SOA1 SOA2 A B C Bandpass filter C

15 -15- Elias Athanasopoulos, ICS-FORTH WSIM Open issues ● Goals ● Architecture ● Building ● A live example ● Open issues

16 -16- Elias Athanasopoulos, ICS-FORTH WSIM Open issues ● Is it useful? (...if yes...) ● Should we model other parameters except time? ● Are we okay with the time granularity (1 tick = 1 bit op)? ● Are we okay with the component granularity (i.e. should a module be a SOA gate, or a SOA-MZI construct)? ● Other comments?

17 -17- Elias Athanasopoulos, ICS-FORTH WSIM Thank you! Elias Athanasopoulos ICS-FORTH elathan@ics.forth.gr


Download ppt "WSIM Towards a software framework for modeling the WISDOM architecture Elias Athanasopoulos ICS-FORTH Cork, January 2007."

Similar presentations


Ads by Google