Displaying 20 results from an estimated 400 matches similar to: "[LLVMdev] Multiversioning"
2008 Nov 10
6
Variable passed to function not used in function in select=... in subset
Hello!
I have the problem that in my function the passed variable is not used, but the variable name of the dataframe itself?- difficult to explain, but an easy example:
TestFunc<-function(df, group) {
??? print(names(subset(df, select=group)))
}
df1<-data.frame(group="G1", visit="V1", value=0.9)
TestFunc(df1, c("group", "visit"))
Result:
[1]
2002 Oct 08
1
dyn.load and c-function
I've got a c function in a dll and have been able to call it from R. The
function is :
void __stdcall testfunc2(
unsigned long *a,
double *b,
unsigned long *c,
double *result )
{
*result = 0;
*result = (*a) * (*b) * (*c);
}
and the R code to call the function is as follows:
dyn.load("c:/openfvs/biometrics/debug/biometrics.dll" )
tf2 <- function(
2009 Dec 09
1
split() is slow on data.frame (PR#14123)
Please see the following code for the runtime comparison between
split() and mysplit.data.frame() (they do the same thing
semantically). mysplit.data.frame() is a fix of split() in term of
performance. Could somebody include this fix (with possible checking
for corner cases) in future version of R and let me know the inclusion
of the fix?
m=300000
n=6
k=30000
set.seed(0)
x=replicate(n,rnorm(m))
2009 Dec 09
1
split() is slow on data.frame (PR#14123)
Please see the following code for the runtime comparison between
split() and mysplit.data.frame() (they do the same thing
semantically). mysplit.data.frame() is a fix of split() in term of
performance. Could somebody include this fix (with possible checking
for corner cases) in future version of R and let me know the inclusion
of the fix?
m=300000
n=6
k=30000
set.seed(0)
x=replicate(n,rnorm(m))
2015 Jan 17
3
[LLVMdev] loop multiversioning
Does LLVM have loop multiversioning ? it seems it does not with clang++ -O3
-mllvm -debug-pass=Arguments program.c -c
bash-4.1$ clang++ -O3 -mllvm -debug-pass=Arguments fast_algorithms.c -c
clang-3.6: warning: treating 'c' input as 'c++' when in C++ mode, this
behavior is deprecated
Pass Arguments: -datalayout -notti -basictti -x86tti -targetlibinfo -no-aa
-tbaa -scoped-noalias
2011 Mar 30
0
Plot an ols() call from Design
Dear users,
I am attempting to plot an ols() call from the Design package, by
following the procedure explained by Harald Baayen in his 2008 book
'Analyzing linguistic data. A practical introduction to statistics
using R', page 175-181.
I've attached my data to this e-mail (I hope it's small enough that that's ok).
First I paste all the commands I ran, followed by the
2010 Feb 04
1
Using vorbis-java to read an existing file?
On Thu, 4 Feb 2010, Conrad Parker wrote:
>> Would there be any interest in hosting this alongside the current
>> (definately write-only) java library?
>
> of course, the more better implementations the better! what vcs are you
> using?
Currently the vcs isn't anywhere public. I've dropped a snapshot at
http://gagravarr.org/misc/vj-20100204-1.tar.gz in case
2012 Nov 11
2
Djjlölkjhfyn kb noknkkkkokljjyikkk hyjjjjjkjjjjkjkkpooololåååååååååååååååääääkkuiivjkoööklopipållällnbbbn mml ömmmm
M
P?opklpnlbyj?nvnmm
M. ?plppkbkv??k? knbnnnnnn??????llp?????tx hikkkhgxxx vj jul?l
Sent from my iPhonejukuj?b?mjl jnmnmmm
Sorry for keeping things short
Gustaf Granath (phd)
Plant Ecology
Uppsala University
2009 Sep 21
3
Basic function output/scope question
Hello Group,
I'm trying to learn R and am having a problem getting output from a
function I'm trying to write. The problem is clearly one of scope,
but I can't find the documentation that tells me how to get around the
issue.
Here is an example of my problem.
testfunc<-function(x)
{ y<-10
print(y)
print(x)
}
testfunc(4)
The variables x and y are accessible during execution
2006 Sep 28
1
Password Change On Windows
Hi Community.
I have at least just one short question. Is it possible to configure
SAMBA in a way, that it notice the password change on Winn 2000 or Win
XP system and adjust this password change in it's one password file
without using LDAP or other password server?
Thanks
VJ
2015 Jan 28
5
[LLVMdev] RFC: generation of PSAD instruction
On Wed, Jan 28, 2015 at 7:50 AM, Hal Finkel <hfinkel at anl.gov> wrote:
> Hi Vijender,
>
> Thanks for posting this, there is wide support here for improving our support for reductions of various kinds, both in flavor and robustness. I've cc'd some others who have previously discussed this.
>
> James has advocated in the past for an intrinsic for horizontal reductions,
2002 Sep 23
1
calling a DLL/shared lib from R directly?
Is it possible to call a basic function/subroutine in a DLL/shared lib from
within R without having to build an R package?
I have a function like:
void __stdcall testfunc2(
unsigned long a,
double b,
unsigned long c )
{
return a * b * c;
}
or=20
subroutine fortran_2002_bh_age (sp,site,total_age,bh_age)
integer*2 sp
real*4 site=20
real*4 total_age
integer*2 bh_age
2009 Jan 05
1
[ANNOUNCE] Samba 3.2.7 Available for Download
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Release Announcements
=====================
This is a security release in order to address CVE-2009-0022.
o CVE-2009-0022
In Samba 3.2.0 to 3.2.6, in setups with registry shares enabled,
access to the root filesystem ("/") is granted
when connecting to a share called "" (empty string)
using old versions of
2009 Jan 05
1
[ANNOUNCE] Samba 3.2.7 Available for Download
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Release Announcements
=====================
This is a security release in order to address CVE-2009-0022.
o CVE-2009-0022
In Samba 3.2.0 to 3.2.6, in setups with registry shares enabled,
access to the root filesystem ("/") is granted
when connecting to a share called "" (empty string)
using old versions of
2001 Oct 06
0
calculating DNA mismatch distributions for large populations
Hi all,
I am interested in calculating and displaying the distributions of
pairwise comparisons between DNA sequences in populations. The
comparisons are the number of nucleotide sites that differ between the
two sequences (mismatches). My sequences are stored in a vector of
strings. There is an additional vector of the same length that
provides the indices to the DNA sequences. Finally, I
2005 Jan 06
2
patterns of missing data: determining monotonicity
Here is a problem that perhaps someone out here has an idea about. It
vaguely reminds me of something
I've seen before, but can't place. Can anyone help?
For multiple imputation, there are simpler methods available if the
patterns of missing data are 'monotone' ---
if Vj is missing then all variables Vk, k>j are also missing, vs. more
complex methods required when the
2009 May 07
2
Wine by default picks up from c:\windows\system32
HI,
When we run wine <program.exe>, it looks like wine by default tries to pick up files from drive_c\windows\system32.
What do we do if the executable files are installed in a different location?.
Wine cannot load it and fails.
Is there a PATH variable or something we can set for WINE, just like we set in a OS?
Cheers
2015 Feb 09
0
extlinux installer build failed
On Sun, Feb 8, 2015 at 7:49 PM, Alexey Orishko via Syslinux
<syslinux at zytor.com> wrote:
> Hi guys,
>
> I'm have a pure 64-bit system (Intel based). Due to that I can't use 32-bit ELF
> extlinux binary provided in the syslinux-6.03 package.
>
> Unfortunately building extlinux installer failed...
>
> See error below after these command:
> make bios clean
2015 Feb 09
1
extlinux installer build failed
On Sun, 8 Feb 2015 20:21:58 -0500
Gene Cumm via Syslinux <syslinux at zytor.com> wrote:
> On Sun, Feb 8, 2015 at 7:49 PM, Alexey Orishko via Syslinux
> <syslinux at zytor.com> wrote:
> > Hi guys,
> >
> > I'm have a pure 64-bit system (Intel based). Due to that I can't
> > use 32-bit ELF extlinux binary provided in the syslinux-6.03
> >
2015 Feb 09
5
extlinux installer build failed
Hi guys,
I'm have a pure 64-bit system (Intel based). Due to that I can't use 32-bit ELF
extlinux binary provided in the syslinux-6.03 package.
Unfortunately building extlinux installer failed...
See error below after these command:
make bios clean
make bios (failed)
...
ar cq liblpxelinux.a rawcon.o pxeboot.o pxelinux-c.o
fs/pxe/dhcp_option.o fs/pxe/pxe.o fs/pxe/tftp.o