search for: samuelfantao

Displaying 3 results from an estimated 3 matches for "samuelfantao".

2017 Mar 15
2
Speculative execution of FP divide Instructions - Call-Graph Simplify
...P intrinsics (sin, cos, pow, etc.). If anyone is interested in getting pieces of the work-in-progress I’ve mentioned above to test drive, let me know. I’d be happy to share. -Andy From: Sanjay Patel [mailto:spatel at rotateright.com] Sent: Wednesday, March 15, 2017 8:16 AM To: Samuel Antão <samuelfantao at gmail.com>; Kaylor, Andrew <andrew.kaylor at intel.com> Cc: llvm-dev <llvm-dev at lists.llvm.org>; acjacob at us.ibm.com Subject: Re: [llvm-dev] Speculative execution of FP divide Instructions - Call-Graph Simplify > - is there any target for which fp division does not have si...
2017 Mar 15
2
Speculative execution of FP divide Instructions - Call-Graph Simplify
Hi all, I came across an issue caused by the Call-Graph Simplify Pass. Here is a a small repro: ``` define double @foo(double %a1, double %a2, double %a3) #0 { entry: %a_mul = fmul double %a1, %a2 %a_cmp = fcmp ogt double %a3, %a_mul br i1 %a_cmp, label %a.then, label %a.end a.then: %a_div = fdiv double %a_mul, %a3 br label %a.end a.end: %a_factor = phi double [ %a_div, %a.then ],
2014 Aug 11
2
[LLVMdev] [RFC] OpenMP offload infrastructure
Hi John, Thank you for the comments. I am addressing some of them bellow. Regards, Samuel 2014-08-11 9:36 GMT-04:00 John Leidel (jleidel) <jleidel at micron.com>: > Sergey [et.al], thanks for putting this proposal together. Overall, this > looks like a pretty solid approach to providing relatively hardware > agnostic omp target functionality. I had several comments/questions