search for: choe

Displaying 17 results from an estimated 17 matches for "choe".

Did you mean: chloe
2007 Apr 26
2
path autocompletion in 2.5.0
Hi, R 2.5.0 isn't auto-completing paths properly as it used to. E.g. suppose I have: > dir("CEL/choe") [1] "chipC-rep1.CEL" "chipC-rep2.CEL" "chipC-rep3.CEL" "chipS-rep1.CEL" [5] "chipS-rep2.CEL" "chipS-rep3.CEL" Now if I do: ReadAffy("CEL/choe/ch<tab> # => ReadAffy("CEL/choe/chip ReadAffy("CEL/choe/chipC&lt...
2019 Oct 11
2
A question with using ORC RPC for remote JIT-ing.
...ile some IR and return the JIT symbol back to the main program for execution. Question: Is there any tool support for this use-case? Or, do we have to use our own IPC methods (shared memory) and JIT compile the IR onto the shared memory, and lookup the JIT symbol in the shared memory? Regards, Choe -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20191011/e2e7f6e3/attachment.html>
2011 Nov 24
2
[LLVMdev] arm neon intrinsics cross compile error on windows system
...fic. Stdint.h is one of them. The reason your Ubuntu stdint.h works is because, coincidentally, Clang's stdint.h uses the same layout and pre-processor built-ins as GCC. This is an implementation detail. Do not rely upon it. You should use Clang's stdint.h. Cheers, James From: Seung-yeon Choe [mailto:sychoe at gmail.com] Sent: 24 November 2011 05:42 To: James Molloy Cc: Anton Korobeynikov; llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] arm neon intrinsics cross compile error on windows system Hello, I totally understood about this problem. codesourcery codebench arm eabi version uses n...
2011 Nov 24
0
[LLVMdev] arm neon intrinsics cross compile error on windows system
...dint.h uses the same layout and pre-processor built-ins as GCC.* > *** > > ** ** > > This is an implementation detail. Do not rely upon it. You should use > Clang’s stdint.h.**** > > ** ** > > Cheers,**** > > ** ** > > James**** > > *From:* Seung-yeon Choe [mailto:sychoe at gmail.com] > *Sent:* 24 November 2011 05:42 > *To:* James Molloy > *Cc:* Anton Korobeynikov; llvmdev at cs.uiuc.edu > > *Subject:* Re: [LLVMdev] arm neon intrinsics cross compile error on > windows system**** > > ** ** > > Hello,**** > > ** **...
2011 Nov 24
0
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hello, I totally understood about this problem. codesourcery codebench arm eabi version uses newlibc. but, arm gnu/linux version uses glibc. hm.. actually there is no problem. it was my mistake as james told me. Thanks. 2011/11/24 Seung-yeon Choe <sychoe at gmail.com> > Hello, James Molly. > > Thank you for your advices. > > Now I aware that this is the problem of stdint.h. And, codesourcery > toolchain also has stdint.h header file at same place of stdio.h > > Generally, Clang has "lib/clang/3.0/include&...
2011 Nov 24
1
[LLVMdev] arm neon intrinsics cross compile error on windows system
...** ** > > Clang comes with stdint.h (but not stdio.h) – you should use clang’s.**** > > ** ** > > Cheers,**** > > ** ** > > James**** > > ** ** > > *From:* llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] *On > Behalf Of *Seung-yeon Choe > *Sent:* 23 November 2011 14:42 > *To:* Anton Korobeynikov > *Cc:* llvmdev at cs.uiuc.edu > *Subject:* Re: [LLVMdev] arm neon intrinsics cross compile error on > windows system**** > > ** ** > > Hello, Anton Korobeynikov.**** > > ** ** > > I just built the ll...
2024 Apr 05
1
[External] Re: Bug in out-of-bounds assignment of list object to expression() vector
On Fri, 5 Apr 2024, Ivan Krylov via R-devel wrote: > On Fri, 5 Apr 2024 08:15:20 -0400 > June Choe <jchoe001 at gmail.com> wrote: > >> When assigning a list to an out of bounds index (ex: the next, n+1 >> index), it errors the same but now changes the values of the vector >> to NULL: >> >> ``` >> x <- expression(a,b,c) >> x[[4]] <- list()...
2024 Apr 05
3
Bug in out-of-bounds assignment of list object to expression() vector
There seems to be a bug in out-of-bounds assignment of list objects to an expression() vector. Tested on release and devel. (Many thanks to folks over at Mastodon for the help narrowing down this bug) When assigning a list into an existing index, it correctly errors on incompatible type, and the expression vector is unchanged: ``` x <- expression(a,b,c) x[[3]] <- list() # Error x #>
2024 Apr 05
1
Bug in out-of-bounds assignment of list object to expression() vector
On Fri, 5 Apr 2024 08:15:20 -0400 June Choe <jchoe001 at gmail.com> wrote: > When assigning a list to an out of bounds index (ex: the next, n+1 > index), it errors the same but now changes the values of the vector > to NULL: > > ``` > x <- expression(a,b,c) > x[[4]] <- list() # Error > x > #> expre...
2011 Nov 23
4
[LLVMdev] arm neon intrinsics cross compile error on windows system
Dear all. I built the LLVM 3.0 rc4 with Clang front-end in windows os env. (also with -DLLVM_TARGETS_TO_BUILD=all option) For arm neon intrinsics testing, I tried to compile some codes, which are included a few neon intrinsics. Although I got a well done bitcode on ubuntu build pc, it shows some errors when compile the codes on windows. Could you let me know why occurred errors? is this just a
2011 Nov 09
2
[LLVMdev] .debug_info section size in arm executable
Dear all I'd wonder why executable's debug information size is bigger than gcc dwarf debug info. When I compiled ARM hello world code with -g option, the arm based assembly and executable files are bigger than gcc results significiantly.(apx. 3x) (source file size was only 3KB) I think that both clang and gcc use same dwarf format ver2 for debugging. But I don't know why the clang
2011 Nov 09
0
[LLVMdev] .debug_info section size in arm executable
Seung-yeon Choe wrote: > Dear all > > I'd wonder why executable's debug information size is bigger than gcc dwarf debug info. > > When I compiled ARM hello world code with -g option, the arm based assembly and executable files are bigger than gcc results significiantly.(apx. 3x) > (source...
2006 May 16
1
Saving a rendered page as a file
Is there any way to save a rendered page as a *.html file? Thanks.
2011 Nov 23
1
[LLVMdev] arm neon intrinsics cross compile error on windows system
Hello, Anton Korobeynikov. I just built the llvm using ms visual studio 2010 and ran the compile command on windows default command console. additionally, I also specified include dir of arm codesourcery latest toolchain because of missing stdio.h and stdint.h . Thanks and best regards, Seung-yeon. 2011/11/23 Anton Korobeynikov <anton at korobeynikov.info> > Hello > > > In
2006 Jun 15
0
Catching Errnos in Controller
I want to write a code in the controller that will catch the Errnos. For some reason I''m not able to do that. I''m thinking Rails is cataching them before it even gets to the controller and throws out the error page. For example, if mysql server isn''t running I want to catch that err and show something else besides the standard error page. Is there a way? Thanks. --
2006 Apr 12
0
Sorting with SQL for has_one, belongs_to relationship
I''ve been using this sort helper to have sortable tables. http://wiki.rubyonrails.com/rails/pages/Sort+Helper I''ve encountered a situation where I need to sort a column that is not part of a table, but it''s related table. For example, say I have db tables called foos and bars. Foos have fields called name and title. And bars have fields called note and foo_id. Foos
2006 Jun 02
4
Ruby on Rails Performance question
I''m wondering if this is a typical thing. What I''m doing is getting about 5000+ records from a database and displaying all of it on a page. I''ve used the benchmark helper to benchmark the views for that page and that takes about 25 seconds to render that view. Is this pretty typical? What I''m doing is using find_by_sql to get all the values that I need from