search for: jt

Displaying 20 results from an estimated 729 matches for "jt".

Did you mean: jit
2012 Nov 21
0
Lattice and a color problem
...ab, layout=c(cl.count,1), col=new["test"]) i want to plot the data. Score indicated the scores which was calculated in a previous step and in my case i extracted 40 score values (each for every row name). Attached below and shown as a matrix. cl.count indicates 3 groups (RA, OA and JT) Sadly, the colors are not in this way i like. If I look at the new[,"test"] column only the rows 1,3,7,and 12 have the value "blue" and all other rows have the value "green". But when I look at my created plot there are 12 lines with a blue color. Can anybody explai...
2012 Nov 22
1
ggplot2 and the legend
...eom_segment(aes(x = 0, xend = Freq, y = Var1, yend = Var1, colour=col)) p3 <- p2 + facet_grid(.~Var2) plot(p3) #### THE DATA # #class(DATA) = data.frame #class(DATA$Var1) = class(DATA$Var2) = factor #class(DATA$Freq) = numeric #class(DATA$col) = character Var1 Var2 Freq col 1 208869_s_at JT 10.6802376685463 blue 2 203394_s_at JT 10.0160470327077 blue 3 201533_at JT 9.58401500697783 blue 4 216520_s_at JT 9.07764840614892 blue 5 210999_s_at JT 9.00219110130877 green 6 212284_x_at JT 8.62193952504277 blue 7 203752_s_at JT 8.69193736253539 green 8 203574_at JT 8.41492571590263 blue 9 2196...
2003 Dec 14
2
Cisco 7960 lockups - any experiences?
...t cause the phone to malfunction. If it is a problem with the 7960 pushing traffic across the tiny built-in switch, then we have a real problem on our hands that Cisco had better fix, pronto. I would appreciate reports of others as to similar issues or resolutions which they found effective. JT
2017 May 24
2
[RFC] CFI for indirect calls with ThinLTO
.... > >> > >>> > >>> > >>> The LTO step emits, for a defined function named “f”: > >>> declare void f.cfi() > >>> .jumptable: > >>> … > >>> call f.cfi > >>> ... > >>> f.cfi-jt = alias .jumptable + offset > >>> f = alias f.cfi-jt > >>> > >>> The same for an external (either weak or strong) declaration of a > >>> function named “f”: > >>> .jumptable: > >>> … > >>> call f > >&g...
2012 Sep 17
3
eval(parse(...)) only once in a function
Hi I would like to have something like str <- "df$JT == 12" fun <- function(df) { b <- eval(parse(str)) return(b) } but for performance "eval(parse(a))" should not be evaluated at each function call, but should work as fun <- function(df) { b <- df$JT == 12 return(b) } Do you have an idea how I can implement...
2013 Jul 23
2
[LLVMdev] Question on optimizeThumb2JumpTables
In looking at the code in ARMConstantislandPass.cpp::optimizeThumb2JumpTables(), I see that there is the following condition for not creating tbb-based jump tables: // The instruction should be a tLEApcrel or t2LEApcrelJT; we want // to delete it as well. MachineInstr *LeaMI = PrevI; if ((LeaMI->getOpcode() != ARM::tLEApcrelJT && LeaMI->getOpcode() != ARM::t2LEApcrelJT) || LeaMI->getOperand(0).getReg() != BaseReg) OptOk = false; if (!Opt...
2010 Jun 06
3
194 Kernel Panic; 164 is Fine; How Do I Debug?
...OS5. kernel-PAE-2.6.18-164.15.1.el5 is the last "works fine" kernel, but kernel-PAE-2.6.18-194.3.1.el5 crashes at boot every time. I tried banging on the side of the monitor to no avail. All kidding aside, here are pictures of my monitor when booting 194 in case that is helpful. http://jt-socal.com/sites/jt-socal.com/files/kernel-panic.jpg http://jt-socal.com/sites/jt-socal.com/files/just-before-crashing.jpg Any suggestions on fixing this? -- Sincerely, John Thomas
2017 May 16
2
[RFC] CFI for indirect calls with ThinLTO
...e, provide it to the > pass). But I'm not sure if there's a better way to do it. > >> >> >> The LTO step emits, for a defined function named “f”: >> declare void f.cfi() >> .jumptable: >> … >> call f.cfi >> ... >> f.cfi-jt = alias .jumptable + offset >> f = alias f.cfi-jt >> >> The same for an external (either weak or strong) declaration of a >> function named “f”: >> .jumptable: >> … >> call f >> ... >> f.cfi-jt = alias .jumptable + offset >> &g...
2023 Dec 05
0
[PATCH] nouveau/gsp: drop some acpi related debug
...->type != ACPI_TYPE_BUFFER) || WARN_ON(obj->buffer.length != 4)) return; caps->status = 0; caps->optimusCaps = *(u32 *)obj->buffer.pointer; - printk(KERN_ERR "nvop: caps %08x\n", caps->optimusCaps); ACPI_FREE(obj); @@ -1136,9 +1132,6 @@ r535_gsp_acpi_jt(acpi_handle handle, JT_METHOD_DATA *jt) if (!obj) return; - printk(KERN_ERR "jt: obj type %d\n", obj->type); - printk(KERN_ERR "jt: obj len %d\n", obj->buffer.length); - if (WARN_ON(obj->type != ACPI_TYPE_BUFFER) || WARN_ON(obj->buffer.length != 4))...
2006 Nov 07
6
Best Practices recommendation on x4200
Greetings all- I have a new X4200 that I''m getting ready to deploy. It has four 146 GB SAS drives. I''d like to setup the box for maximum redundancy on the data stored on these drives. Unfortunately, it looks like ZFS boot/root aren''t really options at this time. The LSI Logic controller in this box only supports either a RAID0 array with all four disks, or a RAID 1
2017 May 16
2
[RFC] CFI for indirect calls with ThinLTO
...rged” module, !cfi.functions may contain multiple entries for each function. We pick one with the strongest linkage (i.e. the definition, if it is available) in LowerTypeTests. The LTO step emits, for a defined function named “f”: declare void f.cfi() .jumptable: … call f.cfi ... f.cfi-jt = alias .jumptable + offset f = alias f.cfi-jt The same for an external (either weak or strong) declaration of a function named “f”: .jumptable: … call f ... f.cfi-jt = alias .jumptable + offset Weak external linkage is used in the lowering of uses of @f. This is done both in the merg...
2013 Jul 29
0
[LLVMdev] Question on optimizeThumb2JumpTables
...at codeaurora.org>wrote: > In looking at the code in > ARMConstantislandPass.cpp::optimizeThumb2JumpTables(), I see that there is > the following condition for not creating tbb-based jump tables:**** > > ** ** > > // The instruction should be a tLEApcrel or t2LEApcrelJT; we want*** > * > > // to delete it as well.**** > > *MachineInstr* *LeaMI = PrevI;**** > > *if* ((LeaMI->getOpcode() != *ARM*::tLEApcrelJT &&**** > > LeaMI->getOpcode() != *ARM*::t2LEApcrelJT) ||**** > > LeaMI-&g...
2013 Jul 29
1
[LLVMdev] Question on optimizeThumb2JumpTables
...art <stewartd at codeaurora.org> wrote: > In looking at the code in ARMConstantislandPass.cpp::optimizeThumb2JumpTables(), I see that there is the following condition for not creating tbb-based jump tables: > > > > // The instruction should be a tLEApcrel or t2LEApcrelJT; we want > > // to delete it as well. > > MachineInstr *LeaMI = PrevI; > > if ((LeaMI->getOpcode() != ARM::tLEApcrelJT && > > LeaMI->getOpcode() != ARM::t2LEApcrelJT) || > > LeaMI->getOperand(0).getReg() != B...
2017 Nov 07
4
Questions about code-size optimizations in ARM backend
...n the backend. I get a dump with the '-print-machineinstrs' option from the MachineFunctionPass and I can see these instructions in the beginning of the passes *%vreg2<def> = MOVsi %vreg1, 18, pred:14, pred:%noreg, opt:%noreg; GPR:%vreg2,%vreg1** **    %vreg3<def> = LEApcrelJT <jt#0>, pred:14, pred:%noreg; GPR:%vreg3** **    BR_JTm %vreg2<kill>, %vreg3<kill>, 0, <jt#0>; mem:LD4[JumpTable] GPR:%vreg2,%vreg3* and these at the end *%R0<def> = MOVsi %R0<kill>, 18, pred:14, pred:%noreg, opt:%noreg** **    %R1<def> = LEApcrelJT <...
2006 Mar 21
2
SQL bug in acts_as_taggable
...excuse me if this is off-topic and feel free to ingore it in case. I''m using acts_as_taggable (the gem version) and found what to me looks like a bug in this code from the method tags_count: sql = "SELECT #{t}.#{t_pk} AS id, #{t}.name AS name, COUNT (*) AS count FROM #{jt}, #{o}, #{t} WHERE #{jt}.#{t_fk} = #{t}.#{t_pk} AND #{jt}.#{o_fk} = #{o}.#{o_pk}" sql << " AND #{sanitize_sql(options[:conditions])}" if options[:condit ions] sql << " GROUP BY #{t}.name" My database (PostgreSQL 8) lamen...
2011 Dec 05
3
[LLVMdev] Dead register (was Re: [llvm-commits] [llvm] r145819)
...ion, in the following instance (this is from the PPC backend): BB#38: derived from LLVM BB %for.end50 Predecessors according to CFG: BB#36 %X3<def> = LD 0, <fi#27>; mem:LD8[FixedStack27] %X4<def> = RLDICR %X3<kill>, 3, 60 %X5<def> = LI8 <jt#0>[TF=4] %X5<def> = ADDIS8 %X5<kill>, <jt#0>[TF=8] %X4<def> = LDX %X4<kill>, %X5<kill>; mem:LD8[JumpTable] MTCTR8 %X4<kill>, %CTR8<imp-def,dead> BCTR8 %CTR8<imp-use,kill>, %RM<imp-use> Successors acco...
2009 May 30
1
Thinkpad T60 - Intel 3945ABG wireless
Centos 5.3 won't activate this. Anyone know if there is a way to get it going, and if so, how? tnx -- Julian Thomas: jt at jt-mj.net http://jt-mj.net In the beautiful Genesee Valley of Western New York State! -- -- Weinberg's Law: If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
2011 Dec 05
0
[LLVMdev] Dead register (was Re: [llvm-commits] [llvm] r145819)
...(this is from the PPC > backend): > > BB#38: derived from LLVM BB %for.end50 > Predecessors according to CFG: BB#36 > %X3<def> = LD 0, <fi#27>; mem:LD8[FixedStack27] > %X4<def> = RLDICR %X3<kill>, 3, 60 > %X5<def> = LI8 <jt#0>[TF=4] > %X5<def> = ADDIS8 %X5<kill>, <jt#0>[TF=8] > %X4<def> = LDX %X4<kill>, %X5<kill>; mem:LD8[JumpTable] > MTCTR8 %X4<kill>, %CTR8<imp-def,dead> > BCTR8 %CTR8<imp-use,kill>, %RM<imp-use> &gt...
2007 Feb 18
11
Re: [osol-help] How to recover from "rm *"?
> On Sun, 18 Feb 2007, Calvin Liu wrote: > >> I want to run command "rm Dis*" in a folder but mis-typed a space in it >> so it became "rm Dis *". Unfortunately I had pressed the return button >> before I noticed the mistake. So you all know what happened... :( :( :( > > Ouch! > >> How can I get the files back in this case? > > You
2006 Apr 04
5
How to implement tag clouds using plugin?
...efined in the gem: def tags_count(options = {}) options = {:order => ''count DESC''}.merge(options) o, t, o_pk, o_fk, t_pk, t_fk = table_name, tag_model.table_name, primary_key, taggable_foreign_key, tag_model.primary_key, tag_foreign_key jt = tags_join_model ? tags_join_model.table_name : tags_join_table sql = "SELECT #{t}.#{t_pk} AS id, #{t}.name AS name, COUNT(*) AS count FROM #{jt}, #{o}, #{t} WHERE #{jt}.#{t_fk} = #{t}.#{t_pk} AND #{jt}.#{o_fk} = #{o}.#{o_pk}" sql << " AN...