[hwloc-devel] Create success (hwloc git dev-213-gb15d76c)

2014-09-12 Thread MPI Team
Creating nightly hwloc snapshot git tarball was a success.

Snapshot:   hwloc dev-213-gb15d76c
Start time: Fri Sep 12 21:01:01 EDT 2014
End time:   Fri Sep 12 21:02:29 EDT 2014

Your friendly daemon,
Cyrador


Re: [hwloc-devel] Interesting warning

2014-09-12 Thread Ralph Castain
Yep, that worked!

On Sep 12, 2014, at 1:30 AM, Samuel Thibault  wrote:

> Hello,
> 
> Ralph Castain, le Wed 10 Sep 2014 17:41:17 -0700, a écrit :
>> Just got this from Clang 3.4.2 on Linux x86-64:
>> 
>> In file included from topology-x86.c:23:
>> /home/common/openmpi/svn-trunk/opal/mca/hwloc/hwloc191/hwloc/include/private/
>> cpuid-x86.h:67:3: warning: extension used [-Wlanguage-extension-token]
>>  asm(
>>  ^
>> 1 warning generated.
>> 
>> 
>> Guess it doesn't like that assembler in there
> 
> Could you try the attached patch?
> 
> Samuel
> 



[hwloc-devel] hwloc now 100% at Github

2014-09-12 Thread Jeff Squyres (jsquyres)
hwloc's git repo has been at Github for a long now.  As of this morning:

- hwloc's tickets are now Github issues
  https://github.com/open-mpi/hwloc/issues

- hwloc's wiki is now on the Github wiki
  https://github.com/open-mpi/hwloc/wiki

- hwloc's git diff emails are being fired via gitdub (not cron)
  ***NOTE: the mailing list is now hwloc-commits (not hwloc-svn)

So I think we're finally 100% Github for hwloc.

Enjoy!

-- 
Jeff Squyres
jsquy...@cisco.com
For corporate legal information go to: 
http://www.cisco.com/web/about/doing_business/legal/cri/



Re: [hwloc-devel] Migrate Trac tickets -> Github issues

2014-09-12 Thread Jeff Squyres (jsquyres)
Cool.  I'm going to wait until I hear from Brice (I think he might be 
traveling?); I don't want to spam him with a zillion emails.


On Sep 12, 2014, at 7:58 AM, Samuel Thibault  wrote:

> Jeff Squyres (jsquyres), le Fri 12 Sep 2014 10:44:03 +, a écrit :
>> I did a test import of hwloc's Trac tickets to githib -- what do you think?
>> 
>>https://github.com/ompiteam/hwloc-test-ticket-import/issues
> 
> It looks good to me.
> 
> I have unwatched the github hwloc project.
> 
> Samuel
> ___
> hwloc-devel mailing list
> hwloc-de...@open-mpi.org
> Subscription: http://www.open-mpi.org/mailman/listinfo.cgi/hwloc-devel
> Link to this post: 
> http://www.open-mpi.org/community/lists/hwloc-devel/2014/09/4214.php


-- 
Jeff Squyres
jsquy...@cisco.com
For corporate legal information go to: 
http://www.cisco.com/web/about/doing_business/legal/cri/



Re: [hwloc-devel] Migrate Trac tickets -> Github issues

2014-09-12 Thread Samuel Thibault
Jeff Squyres (jsquyres), le Fri 12 Sep 2014 10:44:03 +, a écrit :
> I did a test import of hwloc's Trac tickets to githib -- what do you think?
> 
> https://github.com/ompiteam/hwloc-test-ticket-import/issues

It looks good to me.

I have unwatched the github hwloc project.

Samuel


[hwloc-devel] Migrate Trac tickets -> Github issues

2014-09-12 Thread Jeff Squyres (jsquyres)
Samuel / Brice --

I did a test import of hwloc's Trac tickets to githib -- what do you think?

https://github.com/ompiteam/hwloc-test-ticket-import/issues

If you like it, I'll re-do the import over to the main hwloc repo, and we can 
then fully abandon Trac.  There will be one important difference between this 
import and the final/actual import: the tickets will be assigned to the proper 
IDs.

All tickets will still be created and updated by the "ompiteam" user for the 
initial import, because that's the user who is creating all these initial 
tickets.  But any future activity will obviously be by our own usernames.

NOTE: for me to do the final import on the hwloc repo, you *need* to "unwatch" 
the hwloc repo.  Otherwise, Github will send you a mail for *every single 
ticket and comment created*.  When the import is done (it only takes a few 
minutes because there's only a few dozen tickets), you can set your watching 
back to the normal level.

-- 
Jeff Squyres
jsquy...@cisco.com
For corporate legal information go to: 
http://www.cisco.com/web/about/doing_business/legal/cri/



Re: [hwloc-devel] Interesting warning

2014-09-12 Thread Samuel Thibault
Hello,

Ralph Castain, le Wed 10 Sep 2014 17:41:17 -0700, a écrit :
> Just got this from Clang 3.4.2 on Linux x86-64:
> 
> In file included from topology-x86.c:23:
> /home/common/openmpi/svn-trunk/opal/mca/hwloc/hwloc191/hwloc/include/private/
> cpuid-x86.h:67:3: warning: extension used [-Wlanguage-extension-token]
>   asm(
>   ^
> 1 warning generated.
> 
> 
> Guess it doesn't like that assembler in there

Could you try the attached patch?

Samuel
diff --git a/include/private/cpuid-x86.h b/include/private/cpuid-x86.h
index f00a97f..1abf172 100644
--- a/include/private/cpuid-x86.h
+++ b/include/private/cpuid-x86.h
@@ -16,7 +16,7 @@ static __hwloc_inline int hwloc_have_x86_cpuid(void)
 {
   int ret;
   unsigned tmp, tmp2;
-  asm(
+  __asm__(
   "mov $0,%0\n\t"   /* Not supported a priori */

   "pushfl   \n\t"   /* Save flags */
@@ -64,7 +64,7 @@ static __hwloc_inline void hwloc_x86_cpuid(unsigned *eax, 
unsigned *ebx, unsigne
* use them :/ */
 #ifdef HWLOC_X86_64_ARCH
   hwloc_uint64_t sav_rbx;
-  asm(
+  __asm__(
   "mov %%rbx,%2\n\t"
   "cpuid\n\t"
   "xchg %2,%%rbx\n\t"
@@ -73,7 +73,7 @@ static __hwloc_inline void hwloc_x86_cpuid(unsigned *eax, 
unsigned *ebx, unsigne
 "+c" (*ecx), "=" (*edx));
 #elif defined(HWLOC_X86_32_ARCH)
   unsigned long sav_ebx;
-  asm(
+  __asm__(
   "mov %%ebx,%2\n\t"
   "cpuid\n\t"
   "xchg %2,%%ebx\n\t"