search for: a_opt

Displaying 2 results from an estimated 2 matches for "a_opt".

Did you mean: a_ops
2012 May 07
0
[LLVMdev] A problem with optimal edge profiling.
...ench/automotive/qsort$ llc a_oep.bc -O2 -o a.s anon at anonVB:~/MiBench/automotive/qsort$ clang a.s ./libprofile_rt.so -O2 -o a anon at anonVB:~/MiBench/automotive/qsort$ ./a input_large.dat > out.txt anon at anonVB:~/MiBench/automotive/qsort$ opt a_oep.bc -profile-loader -block-placement -O2 -o a_opt.bc *waited for a few minutes* ^C Is it a bug or just me doing something wrong? Also I notice that edge profiling optimizations make MiBench programs work slower. (I use -block-placment option for optimization). I use Ubuntu 11.10. Yours truly, Rodion Mulyukov. -------------- next part -----------...
2008 Jun 15
11
[PATCH] helper to create fb css stylized table
...) + end + + # Renders a facebook styled table footer. + # Use this in conjunction with fb_table. See the example there. + # Provide a url,a label for that url, and any options + # for the td tag and/or the a tag. + def fb_tf(url, label,td_options={},a_options={}) + td_options.merge!(:class=>"see_all") + a_options.merge!(:href=>url) + content_tag(:td, + content_tag(:div, + content_tag(:a,label,stringify_vals(a_options)) + ), stringify_vals(td_options) + ) + end + +...