search for: shin

Displaying 20 results from an estimated 104 matches for "shin".

Did you mean: sbin
2004 Jun 20
9
A way to list only variables or functions?
I am curious if there is any way to list only variables or functions in current environment, rather than listing all objects? Thanks. -- Daehyok Shin (Peter) Geography Department Univ. of North Carolina-Chapel Hill
2004 Jun 20
9
A way to list only variables or functions?
I am curious if there is any way to list only variables or functions in current environment, rather than listing all objects? Thanks. -- Daehyok Shin (Peter) Geography Department Univ. of North Carolina-Chapel Hill
2011 Aug 19
2
[LLVMdev] running a module pass via opt on multiple bitcode files
...ared object implementation with opt. Which would be the ideal approach to analyze a program with a module pass? Thanks. From: John Criswell <criswell at illinois.edu<mailto:criswell at illinois.edu>> Organization: University of Illinois Date: Tue, 12 Jul 2011 16:19:06 -0500 To: Jinwook Shin <Jinwook.Shin at microsoft.com<mailto:Jinwook.Shin at microsoft.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] running a module pass via opt on multiple bitcode...
2013 Jun 19
8
[PATCH 1/2] cpufreq, powernow: enable/disable core performance boost for all cpus in policy
Currently, enable/disable turbo mode on AMD is broken: $ xenpm enable-turbo-mode 0 <-- works and proper CPU MSR bit is set $ xenpm enable-turbo-mode 1 <-- silently broken, MSR bit not set Since ->turbo is per policy, when user requests to enable/disable turbo mode, we need to set the bit in all of the ->cpus that this policy affects. --- xen/arch/x86/acpi/cpufreq/powernow.c | 2
2011 Aug 19
0
[LLVMdev] running a module pass via opt on multiple bitcode files
On 8/19/11 4:36 PM, Jinwook Shin (HOTWING) wrote: > > Thanks John. Your approach worked fine for my small toy program. Now, > I would like to run my module pass on a huge project (still a single > executable) consisting of a few thousand bit code files scattered in > many different directories. And some of them a...
2011 Sep 22
2
[LLVMdev] running a module pass via opt on multiple bitcode files
...our target project and change CC and CFLAGS as follows: CC=llvm-gcc CFLAGS=-emit-llvm … 5) Build the project with LLVM. From: John Criswell <criswell at illinois.edu<mailto:criswell at illinois.edu>> Organization: University of Illinois Date: Fri, 19 Aug 2011 17:00:14 -0500 To: Jinwook Shin <Jinwook.Shin at microsoft.com<mailto:Jinwook.Shin at microsoft.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] running a module pass via opt on multiple bitcode...
2004 Jul 10
6
where does R search when source()?
Exactly where does R search for foo.R if I type source("foo.R")? Only from current working directory (same as getwd()), from all directories specified by e.g. $PATH? Thanks. Daehyok Shin
2004 Jul 10
6
where does R search when source()?
Exactly where does R search for foo.R if I type source("foo.R")? Only from current working directory (same as getwd()), from all directories specified by e.g. $PATH? Thanks. Daehyok Shin
2013 Jun 20
3
[PATCH V2 1/2] cpufreq, xenpm: fix cpufreq and xenpm mismatch
Currently cpufreq and xenpm are out of sync. Fix cpufreq reporting of if turbo mode is enabled or not. Fix xenpm to not decode for tristate, but a boolean. Signed-off-by: Jacob Shin <jacob.shin@amd.com> --- tools/misc/xenpm.c | 14 +++----------- xen/drivers/cpufreq/utility.c | 2 +- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/tools/misc/xenpm.c b/tools/misc/xenpm.c index b5f1383..2e57f1f 100644 --- a/tools/misc/xenpm.c +++ b/tools/mi...
2006 Jul 04
4
[PATCH] xenmon: remove magic number "31" (the idle domain)
...the magic number "31" for readability. The number "31" means the idle domain ID. In detail: - display the idle domain ID with "Idle" instead of "31" - write to the file "log-idle.log" instead of "log-dom31.log". Signed-off-by: KUWAMURA Shin''ya <kuwa@jp.fujitsu.com> Thanks, -- KUWAMURA Shin''ya _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2011 Oct 09
2
[LLVMdev] interprocedural static backwards slicing
...s John. I appreciate your help and I look forward to obtaining the code. A proper LLVM sub-project: No rush on this and please take your time. Thanks. - Jin -----Original Message----- From: Criswell, John T [mailto:criswell at illinois.edu] Sent: Saturday, October 08, 2011 11:58 AM To: Jinwook Shin; llvmdev at cs.uiuc.edu Subject: RE: interprocedural static backwards slicing Dear Jin, I've talked with Vikram, and we agree that having this code (and a dynamic backwards slicing pass that Swarup and I wrote) in a publicly available SVN repository is a good thing. I'll try to get you a...
2010 Dec 30
1
[LLVMdev] VMkit
...ng language like Java. So I am very interested VMkit.I found the website says this mailing list is where we can discuss about VMkit. But it seems there are not many posting here. Is VMkit still an active project? Which is the best project to refer to learn how to create a new language? Thank you. Shin
2011 Jan 05
1
[LLVMdev] VMKit - Getting Started
...th MMtk and I could not let it work... What is the advantage of using MMtk in VMkit? I understand that is an accurate garbage collector and it sounds better than conservative one. Does anybody have actual comparison about the throughput and the response time? Which one is more stable? Thank you. Shin
2006 Jul 01
5
generate bi-variate normal data
Dear all, I would like to generate bi-variate normal data given that the first column of the data is known. for example: I first generate a set of data using the command, x <- rmvnorm(10, c(0, 0), matrix(c(1, 0, 0, 1), 2)) then I would like to sum up the two columns of x: x.sum <- apply(x, 1, sum) now with x.sum I would like to generate another column of data, say y, that makes
2004 Apr 12
4
Only referenc copy when calling C routine?
.... Normally these are copied before being passed in, and copied again to an R list object when the compiled code returns. If the arguments are given names, these are used as names for the components in the returned list object (but not passed to the compiled code)." Thanks in advance. Daehyok Shin
2011 Oct 08
0
[LLVMdev] interprocedural static backwards slicing
...I can work on making a proper LLVM sub-project (ala http://llvm.org/docs/Projects.html) later, although I don't know exactly when I can get to that (I've got some important work priorities to contend with in mid-October). -- John T. ________________________________________ From: Jinwook Shin [Jinwook.Shin at microsoft.com] Sent: Thursday, October 06, 2011 12:59 PM To: Criswell, John T; llvmdev at cs.uiuc.edu Subject: interprocedural static backwards slicing Hello John et al - I have been struggling to implement static backwards slicing with LLVM. After digging llvmdev postings for so...
2007 Nov 27
2
lme object manipulation
...have an lme object, say lme_res2, which was generated using the varIdent. I'm trying to extract the double 1.532940 from the object, but I can't find it by attributes(lme_res2) or attributes(summary(lme_res2)). How can I pull it out (so that I can save it to another variable)? Thanks. Shin Linear mixed-effects model fit by REML Data: dat Log-restricted-likelihood: 22.3213 Fixed: express1 ~ race * thaps + race * tuni (Intercept) race thaps tuni race:thaps race:tuni 7.00034057 -0.02675202 -0.05687972 0.01265845 -0.03859781 -0.11248439 Random effects: F...
2013 Sep 12
23
More Coverity-reported issues.
Another bundle of issues from Coverity triage. The first one is in x86/mm, and looks scarier than it is. The others are all in xen/drivers and AFAICT are pretty minor. Cheers, Tim.
2004 Jun 07
7
Vectors of years, months, and days to dates?
...Odate(years, months, days)) But, in this solution the ISOdate function converts the vectors into characters, which can cause serious performance and memory loss when the vectors of years, months, and days are huge. I am quite sure there is much better solution for it. What is it? Thanks. Daehyok Shin
2011 Oct 06
2
[LLVMdev] interprocedural static backwards slicing
Hello John et al - I have been struggling to implement static backwards slicing with LLVM. After digging llvmdev postings for some time, I see that other people were having similar difficulties and John's got almost complete code that may be shared. May I get a copy of it, too? Better yet, it would be helpful for many other people if the code were checked in to an example directory or