From mach at zhaw.ch Fri Nov 15 12:42:44 2013 From: mach at zhaw.ch (Christof Marti) Date: Fri, 15 Nov 2013 12:42:44 +0100 Subject: [Miwi-middleware] KIARA Meeting agenda/minutes Message-ID: Hi all I prepared the preliminary agenda/minutes for todays meeting: https://docs.google.com/document/d/14VrAdwVLB2LGGN5l2Q7B6HdR6x7nwTDzo2Ls9WoIt_U/edit See you in the hangout at 13:00: https://plus.google.com/hangouts/_/7acpiu0r8urbasecav15jiil3o Cheers, Christof ---- InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch Institut of Applied Information Technology - InIT Zurich University of Applied Sciences - ZHAW School of Engineering Phone: +41 58 934 70 63 Skype: christof-marti From rubinstein at cs.uni-saarland.de Thu Nov 21 12:12:03 2013 From: rubinstein at cs.uni-saarland.de (Dmitri Rubinstein) Date: Thu, 21 Nov 2013 12:12:03 +0100 Subject: [Miwi-middleware] KIARA: Version 0.8.3 Message-ID: <528DEA83.8010804@cs.uni-saarland.de> Hi. I finished and pushed to ZHAW Gitorious Repos a new version of KIARA. This is a minor feature release. * New features: 1. Improved service declarations. Implementation of a service can be now declared separately from the KIARA declaration of a service signature. Old: KIARA_DECL_SERVICE(Calc_Add, KIARA_SERVICE_RESULT(IntPtr, result) KIARA_SERVICE_ARG(KIARA_INT, a) KIARA_SERVICE_ARG(KIARA_INT, b)) { *result = a + b; return KIARA_SUCCESS; } // register result = KIARA_REGISTER_SERVICE_FUNC(service, "calc.add", Calc_Add, ""); New: KIARA_DECL_SERVICE(Calc_Add, KIARA_SERVICE_RESULT(IntPtr, result) KIARA_SERVICE_ARG(KIARA_INT, a) KIARA_SERVICE_ARG(KIARA_INT, b)) KIARA_Result MyCalcAdd(KIARA_ServiceFuncObj *kiara_funcobj, int *result, int a, int b) { *result = a + b; return KIARA_SUCCESS; } result = KIARA_REGISTER_SERVICE_FUNC(service, "calc.add", Calc_Add, "", MyCalcAdd); Documentation was updated as well: https://forge.fi-ware.eu/plugins/mediawiki/wiki/miwi/index.php/Middleware.doc.API.DFKI 2. Updated installation instructions for Fedora OS for building of 32-bit binaries on 64-bit OS. There are no changes in installation instructions. Best, Dmitri From mach at zhaw.ch Fri Nov 22 12:36:08 2013 From: mach at zhaw.ch (Christof Marti) Date: Fri, 22 Nov 2013 12:36:08 +0100 Subject: [Miwi-middleware] KIARA Meeting agenda/minutes Message-ID: <521D3400-E6D8-4CB6-868A-56CE66B5B88E@zhaw.ch> Hi all I prepared the preliminary agenda/minutes for todays meeting: https://docs.google.com/document/d/1uuyreMiu9w1e5mm1_DbwR9kTRiQ4te6RUBJpAgK_CqE/edit Main topics are: - the backlog/tracker - input for TF continuation proposal - admin stuff like uploading the available documentation to FI-WARE Docs-tool,... See you in the hangout at 13:00: https://plus.google.com/hangouts/_/7ecpir9g1jvok0rp56ku54r2eo Cheers, Christof ---- InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch Institut of Applied Information Technology - InIT Zurich University of Applied Sciences - ZHAW School of Engineering Phone: +41 58 934 70 63 Skype: christof-marti From mach at zhaw.ch Fri Nov 22 12:59:48 2013 From: mach at zhaw.ch (Christof Marti) Date: Fri, 22 Nov 2013 12:59:48 +0100 Subject: [Miwi-middleware] KIARA Meeting agenda/minutes In-Reply-To: <521D3400-E6D8-4CB6-868A-56CE66B5B88E@zhaw.ch> References: <521D3400-E6D8-4CB6-868A-56CE66B5B88E@zhaw.ch> Message-ID: <07B2EC01-285D-4AD6-888A-8C744BB0A12E@zhaw.ch> The hangout expired. Please use the following link: https://plus.google.com/hangouts/_/76cpjcvh3vk4fuhbfj4khqdd1c Christof Am 22.11.2013 um 12:36 schrieb Christof Marti : > Hi all > > I prepared the preliminary agenda/minutes for todays meeting: > https://docs.google.com/document/d/1uuyreMiu9w1e5mm1_DbwR9kTRiQ4te6RUBJpAgK_CqE/edit > Main topics are: > - the backlog/tracker > - input for TF continuation proposal > - admin stuff like uploading the available documentation to FI-WARE Docs-tool,... > > See you in the hangout at 13:00: > https://plus.google.com/hangouts/_/7ecpir9g1jvok0rp56ku54r2eo > > Cheers, > Christof > ---- > InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch > Institut of Applied Information Technology - InIT > Zurich University of Applied Sciences - ZHAW > School of Engineering > Phone: +41 58 934 70 63 > Skype: christof-marti From brnr at zhaw.ch Fri Nov 22 18:15:36 2013 From: brnr at zhaw.ch (Brunner Sandro (brnr)) Date: Fri, 22 Nov 2013 17:15:36 +0000 Subject: [Miwi-middleware] Short docu about InfiniBand and simple RDMA program Message-ID: <315D1CE3D88BD84FBC1C5FC0D1941F414B9D05F3@srv-mail-101.zhaw.ch> Hi guys, I've put together a short documentation on the basics of InfiniBand. It includes the description of a simple program written with IB verbs using an RDMA write. The code can be found here: https://dornbirn.zhaw.ch/kiara/infiniband/trees/master cheers Sandro ====================================================================================== ZHAW - Zurich University of Applied Sciences ICCLAB, InIT Sandro Brunner Researcher Office: TD 03.02 - Obere Kirchgasse 2 CH - 8401 Winterthur Phone: +41 58 934 69 47 Mail: sandro.brunner at zhaw.ch Skype: brunnersandro www.cloudcomp.ch -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: InfiniBand Basics + Simple RDMA Application.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 2137607 bytes Desc: InfiniBand Basics + Simple RDMA Application.docx URL: From mach at zhaw.ch Fri Nov 29 13:01:17 2013 From: mach at zhaw.ch (Christof Marti) Date: Fri, 29 Nov 2013 13:01:17 +0100 Subject: [Miwi-middleware] Agenda/Minutes of todays meeting Message-ID: <90CB5BCD-5187-4B99-9B44-681CCC7C72B4@zhaw.ch> Hi Agenda minutes of todays meeting: https://docs.google.com/document/d/1kuUnPgZp4Qc7tApanXsEKDIEb2m9ejApF1RWycoZP2U/edit I have problems connecting to google hangout at the moment. I will send a hangout link in a separate email as soon it works. Christof From mach at zhaw.ch Fri Nov 29 13:09:56 2013 From: mach at zhaw.ch (Christof Marti) Date: Fri, 29 Nov 2013 13:09:56 +0100 Subject: [Miwi-middleware] Agenda/Minutes of todays meeting In-Reply-To: References: Message-ID: <3EECB7F4-EBF9-4AE4-A499-7A537D6D2C1B@zhaw.ch> Link to hangout: https://plus.google.com/hangouts/_/7ecpiigdcgstmb3b5eircfvhsk?hl=de Am 29.11.2013 um 13:01 schrieb Marti Christof (mach) : > Hi > > Agenda minutes of todays meeting: > https://docs.google.com/document/d/1kuUnPgZp4Qc7tApanXsEKDIEb2m9ejApF1RWycoZP2U/edit > > I have problems connecting to google hangout at the moment. > I will send a hangout link in a separate email as soon it works. > > Christof > > > > _______________________________________________ > Miwi-middleware mailing list > Miwi-middleware at lists.fi-ware.eu > https://lists.fi-ware.eu/listinfo/miwi-middleware From stefan.denne at dfki.de Fri Nov 29 16:13:10 2013 From: stefan.denne at dfki.de (Stefan Denne) Date: Fri, 29 Nov 2013 16:13:10 +0100 Subject: [Miwi-middleware] All WP6 tracker items closed for CISPA Message-ID: <5298AF06.8030504@dfki.de> Hi, I closed all pending tracker entries of WP6 tracker concerning CISPA items. Transfer and cleanup completed. Best regards, Stefan -------------- next part -------------- A non-text attachment was scrubbed... Name: stefan_denne.vcf Type: text/x-vcard Size: 714 bytes Desc: not available URL: