search for: cfp

Displaying 20 results from an estimated 489 matches for "cfp".

Did you mean: cfe
2011 Dec 14
2
Question about index reset in dovecot 2.0.15
...error log messages in our dovecot server (2.0.15, RHEL 5.7x64, mdbox+zlib, local storage, high load) Dec 14 22:01:27 buzon dovecot: imap(fmcarrasco): Error: /indices_dovecot/indices/07/47/fmcarrasco/mailboxes/INBOX/dovecot.index reset, view is now inconsistent Dec 14 22:00:27 buzon dovecot: imap(cfp): Error: /indices_dovecot/indices/16/58/cfp/mailboxes/Sent/dovecot.index reset, view is now inconsistent Dec 14 20:56:46 buzon dovecot: imap(rcam): Error: Corrupted index cache file /indices_dovecot/indices/03/6b/rcam/mailboxes/INBOX/dovecot.index.cache: Broken virtual size for mail UID 132197 De...
2007 Feb 27
4
ordered matrix question
Hi all, Is there an easy way to generate an object wich will be the same matrix, but ordered by de cfp value? The data frame consists of numeric columns: "Block" "X" "Y" "cfp" "yfp" "ID" 0 524 244 213.41795 7.18482109 1 0 556 270 65.383904 9.568372661 2 0 528 316 40.789474 5.573732175...
2011 Sep 16
0
Scale x10 CFP open until Dec 3rd
Hi everybody, I am planning to have a Xen booth at Scale x10 next year. Scale has a CFP open and it would be great if we have some paper submissions from the community there. See www.socallinuxexpo.org/cfp/cfp-information <http://www.socallinuxexpo.org/cfp/cfp-information> Regards Lars _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen...
2011 Sep 16
0
Scale x10 CFP open until Dec 3rd
Hi everybody, I am planning to have a Xen booth at Scale x10 next year. Scale has a CFP open and it would be great if we have some paper submissions from the community there. See www.socallinuxexpo.org/cfp/cfp-information <http://www.socallinuxexpo.org/cfp/cfp-information> Regards Lars _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen...
2015 Jan 14
2
[LLVMdev] Bug in InsertElement constant propagation?
...it back when creating the ConstantDataArray. This causes the float value to be changed. I'm not entirely positive why the float value returned by converToFloat has a different memory representation than the original int value, there must be a C++ rule that I'm missing. d if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { if (CFP->getType()->isFloatTy()) { SmallVector<float, 16> Elts; for (unsigned i = 0, e = V.size(); i != e; ++i) if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i])) Elts.push_back(CFP->getValueAPF().con...
2019 Jan 14
2
EuroLLVM 2019 CFP deadline is in 20 minutes
Dear All, Another reminder: the deadline for submitting talk proposals for EuroLLVM'19 is in 20 minutes. Details are available at http://llvm.org/devmtg/2019-04/#cfp -- With best regards, Anton Korobeynikov Department of Statistical Modelling, Saint Petersburg State University
2012 May 17
0
[LLVMdev] [PATCH] OpenCL half support
...not the patch.) Done. > The patch removes half case from the code for single and double. > So you should remove the "bool isHalf" variable in that spot. (line > 720) I'm not sure I get it. This variable is still needed couple of lines below: bool isHalf = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEhalf; bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble; bool isInf = CFP->getValueAPF().isInfinity(); bool isNaN = CFP->getValueAPF().isNaN(); if (!isHalf && !isInf &&amp...
2012 Feb 10
1
[LLVMdev] Prevent DAG combiner from changing "store ConstFP, addr" to integer store
This code lives in DAGCombiner.cpp: ------------- // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) { // NOTE: If the original store is volatile, this transform must not increase // the number of stores. For example, on x86-32 an f64 can be stored in one // processor operation but an i64 (which is not legal) requires two. So the // tran...
2004 Nov 19
0
Call for papers: Bellua Cyber Security Asia 2005
Bellua Cyber Security Asia 2005 - http://www.bellua.com/bcs2005 Call for Papers and Workshops http://www.bellua.com/bcs2005/asia05.cfp.html From 21st - 24th March the largest information security conference in Asia will take place in Jakarta, Indonesia at the Hotel Borobudur. * 21-22 March 2005: Workshops * 23-24 March 2005: Conference Bellua will bring together over 20 researchers and practitioners from numerous discip...
2023 Jul 13
1
[CfP] Confidential Computing Microconference @ LPC 2023
...omputing threat model * Secure VM Service module (SVSM) and paravisor architecture and implementation * Live migration of confidential virtual machines * ARM64 Confidential Computing * RISC-V CoVE * Secure IO and device attestation * Intel TDX Connect * AMD SEV-TIO Please use the LPC CfP process to submit your proposals. Submissions can be made via https://lpc.events/event/17/abstracts/ Make sure to select "Confidential Computing MC" as the track and submit your session proposal by August 25th. Submissions made after that date can not be included into the microconferen...
2005 Sep 01
1
OT: SCALE 4x -- Call For Papers
...slides and audio in most cases): 2005 - http://www.socallinuxexpo.org/past/2005/hours.php 2003 - http://www.socallinuxexpo.org/past/2003/presentations.php 2002 - http://www.socallinuxexpo.org/past/2002/presentations.php If you have any questions please feel free to call the Call For Papers team at cfp @ socallinuxexp.org CFP Link: http://www.socallinuxexpo.org/pr/pr_20050620.php CFP PDF: http://www.socallinuxexpo.org/pr/cfp4x.pdf Best regards, Ilan Rabinovitch Conference Chair Southern California Linux Expo http://www.socallinuxexpo.org 2006 Southern CAlifornia Linux Expo The USC, Simi/C...
2013 Jul 22
0
[LLVMdev] Inverse of ConstantFP::get and similar functions?
----- Original Message ----- > Hi, > > I noticed that ConstantFP::get automatically returns the > appropriately > types Constant depending on the LLVM type passed in (i.e. if called > with a vector, it returns a splat vector with the given constant). > > Is there any simple way to do the inverse of this function? i.e., > given a llvm::Value, check whether it is either
2012 May 17
3
[LLVMdev] [PATCH] OpenCL half support
...The patch removes half case from the code for single and double. > > So you should remove the "bool isHalf" variable in that spot. (line > > 720) > I'm not sure I get it. This variable is still needed couple of lines > below: > > bool isHalf = &CFP- > >getValueAPF().getSemantics()==&APFloat::IEEEhalf; > bool isDouble = > &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble; > bool isInf = CFP->getValueAPF().isInfinity(); > bool isNaN = CFP->getValueAPF().isNaN(); > if (!isH...
2009 Aug 07
0
CFP: FOMS 2010 - registrations and submissions
Hi, The CFP for the Foundations of Open Media Software workshop (FOMS) is now available (see below). Please note the submission / registration deadlines. Developers of Xiph technologies are particularly invited to contribute (sorry for the cross-postings). If you know people that you think should attend and...
2009 Aug 07
0
CFP: FOMS 2010 - registrations and submissions
Hi, The CFP for the Foundations of Open Media Software workshop (FOMS) is now available (see below). Please note the submission / registration deadlines. Developers of Xiph technologies are particularly invited to contribute (sorry for the cross-postings). If you know people that you think should attend and...
2009 Aug 07
0
CFP: FOMS 2010 - registrations and submissions
Hi, The CFP for the Foundations of Open Media Software workshop (FOMS) is now available (see below). Please note the submission / registration deadlines. Developers of Xiph technologies are particularly invited to contribute (sorry for the cross-postings). If you know people that you think should attend and...
2009 Aug 07
0
CFP: FOMS 2010 - registrations and submissions
Hi, The CFP for the Foundations of Open Media Software workshop (FOMS) is now available (see below). Please note the submission / registration deadlines. Developers of Xiph technologies are particularly invited to contribute (sorry for the cross-postings). If you know people that you think should attend and...
2012 May 11
2
[LLVMdev] [PATCH] OpenCL half support
I've got comments on the code change. The test cases look ok, but I haven't fully checked the math on the half-values. I checked with reference to trunk top-of-tree at revision 156617. I have not compiled the code. lib/AsmParser/LLLexer.cpp Adds support to parse format: 0xH<hexdigits> Tha 0xH format should be described in LangRef.html alongside 0xK<hex> and
2019 Aug 05
0
XDC 2019: Schedule published & Workshops CfP reopened!
...lished! https://xdc2019.x.org/event/5/timetable/#20191002.detailed XDC 2019 will take place at the Concordia University Conference Centre in Montréal, Canada on October 2-4, 2019. If you haven't already done so, now is the time to book your travel! In addition to publishing the schedule, the CfP for workshops has been reopened. If you ave an idea for a workshop discussion, please sent it in! https://xdc2019.x.org/event/5/abstracts/ We are looking forward to seeing you (and sharing a poutine!) in beautiful Montréal! If you have any questions, please send me an email to mark.filion at...
2017 May 09
0
CFP: KVM Forum 2017
...To: "Paolo Bonzini" <pbonzini at redhat.com>, "KVM list" <kvm at vger.kernel.org>, linux-kernel at vger.kernel.org, "Linux > Virtualization" <virtualization at lists.linux-foundation.org> > Sent: Tuesday, May 9, 2017 7:42:48 AM > Subject: Re: CFP: KVM Forum 2017 > > On 05/02/2017 06:41 AM, Paolo Bonzini wrote: > > ================================================================ > > KVM Forum 2017: Call For Participation > > October 25-27, 2017 - Hilton Prague - Prague, Czech Republic > > > > (All submis...