search for: briansmith

Displaying 6 results from an estimated 6 matches for "briansmith".

2015 Jul 27
1
[LLVMdev] Recent clang 3.7 RC1 release broke Travis CI integration
...he llvm-toolchain-precise-X.Y repo was created at the start of the cycle for version X.Y instead of the end. In particular, it would be great if the llvm-toolchain-precise-3.8 repository could be created now for the 3.8 prereleases, instead of later when 3.8 is released. Cheers, Brian -- https://briansmith.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150727/82f84618/attachment.html>
2016 Jan 14
3
Proposal: GDM login tips & tricks entry
...create an entry in Tips and Tricks - 5. Admin tricks and shell one-liners describing how to disable the user list in the GDM graphical login. I would draw on the info posted in this blog entry http://blog.toracat.org/2011/01/gnome-login-shows-all-valid-user-accounts-disable-it/ CentOS wiki user: BrianSmith Dr. Brian O. Smith --------------------------- Brian Smith at glasgow ac uk -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-docs/attachments/20160114/c684a5ad/attachment.html>
2017 Feb 16
2
multiprecision add/sub
...etimes want "a - b" to be side-channel free and other times we'd rather "a - b" to be as fast as possible and optimized for the case where carries are unlikely to propagate (far). That's already three different operations, just for subtraction. Cheers, Brian -- https://briansmith.org/
2017 Jun 07
1
PROPOSAL: addition to SecuringSSH HowTo
Hi Alan, Sorry - ID is BrianSmith. I've read the contribution guidelines and previously contributed. Yours, Brian On Wed, 7 Jun 2017, centos-docs-request at centos.org wrote: > > On 6 June 2017 at 12:43, Brian Smith <Brian.Smith at glasgow.ac.uk> wrote: >> Hi, >> >> I propose to add a Q and A...
2016 Jan 15
0
Proposal: GDM login tips & tricks entry
...create an entry in Tips and Tricks - 5. Admin tricks and shell one-liners describing how to disable the user list in the GDM graphical login. I would draw on the info posted in this blog entry http://blog.toracat.org/2011/01/gnome-login-shows-all-valid-user-accounts-disable-it/ CentOS wiki user: BrianSmith Dr. Brian O. Smith --------------------------- Brian Smith at glasgow ac uk -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-docs/attachments/20160115/6e5ba477/attachment.html>
2017 Feb 15
4
multiprecision add/sub
I suggest that LLVM needs intrinsics for add/sub with carry, e.g. declare {T, i1} @llvm.addc.T(T %a, T %b, i1 c) The current multiprecision clang intrinsics example: void foo(unsigned *x, unsigned *y, unsigned *z) { unsigned carryin = 0; unsigned carryout; z[0] = __builtin_addc(x[0], y[0], carryin, &carryout); carryin = carryout; z[1] = __builtin_addc(x[1], y[1],