Displaying 12 results from an estimated 12 matches for "krastev".
2014 Oct 01
2
[LLVMdev] Issue with incomplete type debug info in recent release_35
...http://llvm.org/apt/) and when built locally from svn branch release_35. It
bears noting that on the same machines an older, locally-built version of
pre-3.5.0 (trunk circa rev 198K) does not exhibit the problem.
Is that a known regression, or shall I try to file a ticket for it?
Regards,
Martin Krastev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141001/e3c47f15/attachment.html>
2007 Dec 10
1
XML R function description
...Rd files are the closest thing I found, but they do not describe the
argument (or return value) types.
The purpose would be to write a program to automate the creation of C#
wrapper around any R function, but without the argument type Rd descriptions
are useless.
Any clues...
thank you
Teodor Krastev
2000 Feb 29
0
Re: arima in ts.
> From: "Krassimir Krastev" <krastev at fas.harvard.edu>
> To: "R-help" <r-help at stat.math.ethz.ch>
> Date: Tue, 29 Feb 2000 11:56:49 -0500
> X-Priority: 3 (Normal)
> X-MSMail-Priority: Normal
> Importance: Normal
> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600
>...
2015 Jan 07
2
[LLVMdev] Inclusion of iostream affects devirtualization in release_35
Hello,
I've stumbled upon the following behavior in branches/release_35 (as of
218689) under ubuntu 14.04 LTS amd64: whenever I include the (system-wise)
gnu iostream header, clang++ stops devirtualizing the following code:
#if BREAKAGE_ENSUES
#include <iostream>
#endif
struct Base {
virtual int foo() const = 0;
};
struct A : Base {
int a;
A(const int a)
: a(a) {
}
int foo() const
2015 Feb 02
1
BinaryFiles format
Hello,
after many failed attempts to correctly write BinaryFiles file
"R CMD check will warn about them unless they are listed (one filepath per
line) in a file BinaryFiles at the top level of the package." - CRAN docs
would somebody kindly provide an example of BinaryFiles file?
thank you
Theo
--
View this message in context:
2006 Mar 10
0
Spectrino 1.5 update
...s fixed.
- some visual interface improvements.
- now, the pre-processing options are adjustable from within R - function
spnPPOpt(opts)
- the mean extraction is based on a specific group (not on the entire
set) - more appropriate for discriminant analysis.
Enjoy the new Spectrino !
Teodor Krastev
--SpecLabs
_______________________________________________
R-packages mailing list
R-packages at stat.math.ethz.ch
https://stat.ethz.ch/mailman/listinfo/r-packages
2000 Feb 29
1
No subject
Does anyone know of any comprehensive literature (like a book, collection of
articles, etc.) that walk thorugh example of ARIMA modeling with the ts
package of R? Genarlly if you've just started to learn the R-language and
are all week long with ARIMA, what is a fast-pace source that you would
recommend (to a beginner) ?
Thank you,
Krasi
2006 Mar 10
0
Spectrino 1.5 update
...s fixed.
- some visual interface improvements.
- now, the pre-processing options are adjustable from within R - function
spnPPOpt(opts)
- the mean extraction is based on a specific group (not on the entire
set) - more appropriate for discriminant analysis.
Enjoy the new Spectrino !
Teodor Krastev
--SpecLabs
_______________________________________________
R-packages mailing list
R-packages at stat.math.ethz.ch
https://stat.ethz.ch/mailman/listinfo/r-packages
2004 Dec 22
1
help with creating package
Hello,
I'm trying to create a source package (on Win2k system). I followed the
instructions from R-extns.pdf, installed ActivePerl and RTools with setting
the DOS path to it.
Then I did "Rcmd check" and had an error:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
C:\R\rw2001\bin>Rcmd check D:/prime7/SpnInstall/spectrino
* checking for working latex ...latex: not found
NO
* using log directory
2000 Mar 02
1
Windows NT make erro this time
(Windows NT)(I think I did all the steps in the Install file right)
and I got an R-1.0.0 make error which noone got yet.
Please help! I looked in the Makefile but I don't see any quoted strings
there.
(I'm not good at make:-/)
>pwd
/WINNT/Profiles/krac/Desktop/R-1.0.0/src/gnuwin32
>make BUILD=MINGW32
mkdir -p ../../bin
make -C ./fixed
make[1]: Entering directory
2015 Apr 07
4
[LLVMdev] how much RAM do I really need to build a devel version of LLVM?
I tried half a gig and that didn't work. I just want to know before I
go buy a new machine.
Gry
2014 Oct 13
2
[LLVMdev] Unexpected spilling of vector register during lane extraction on some x86_64 targets
Hello,
Depending on how I extract integer lanes from an x86_64 xmm register, the
backend may spill that register in order to load scalars. The effect was
observed on two targets: corei7-avx and btver1 (I haven't checked other
targets).
Here's a test case with spilling/no-spilling code put on conditional
compile:
#if __SSE4_1__ != 0
#include <smmintrin.h>
#else
#include