search for: dergachev

Displaying 20 results from an estimated 35 matches for "dergachev".

2006 Dec 06
4
data frame subset patch, take 2
...uced two new functions .subassign2 and .subassign that are complimentary to .subset2 and .subset. * Changed x[[j]]<- assignment to x<-.subassign2(x, j, ..) to fix the problem with the previous patch. thank you ! Vladimir Dergachev
2019 Sep 14
2
[GSoC 2019] Apply the Clang Static Analyzer to LLVM-based projects - final report
Hello, Le 29/08/2019 à 01:02, Artem Dergachev a écrit : > Yay thx! > > Sylvestre, is there anything i can help you with in order to get the reports page back up? Sorry, it took me a while to get that back but here is the report of r371718: https://llvm.org/reports/scan-build/ > I'd also indeed love to spam people with warnin...
2019 Aug 28
2
[GSoC 2019] Apply the Clang Static Analyzer to LLVM-based projects - final report
...be very useful - I've found it tricky to work with on my WSL builds and I tended to just browse the scan-build web report when it was up to date. At the moment I'm just keeping an eye on cppcheck and MSVC analysis reports that I have running in visual studio. On 28/08/2019 02:56, Artem Dergachev wrote: > +Simon because he has enthusiastically looked at the state of things > just before we started: > http://lists.llvm.org/pipermail/llvm-dev/2019-May/132196.html > > Also +Devin. > > Also, Simon: do you know how does https://llvm.org/reports/scan-build/ > usually ge...
2019 Aug 26
2
[GSoC 2019] Apply the Clang Static Analyzer to LLVM-based projects - final report
Hey everyone! This Summer we managed to make the Clang Static Analyzer support the LLVM and LLVM-based projects with my mentors Artem Dergachev and Gabor Horvath. For a more detailed documentation please visit my final report: https://docs.google.com/document/d/1o9-xEWbzivUGKIOXp9jUNZYq0mkecd5KH5dBN5Hdlu8/ The project in a nutshell: I have fixed the most annoying false positives and added support for the custom RTTI of LLVM which became...
2019 Apr 05
2
[cfe-dev] scan-build on Windows
Hi Siddharth, alternativly you can try this <https://github.com/rizsotto/scan-build>, it's written in Python. Regards, Laszlo On Sat, Apr 6, 2019 at 5:14 AM Artem Dergachev via cfe-dev < cfe-dev at lists.llvm.org> wrote: > Hi, > > I never tried it myself but i can try to help you with specific problems > that you're having if you disclose them. > > scan-build is a Perl script, it most likely requires having Perl and a > few Perl modules...
2019 Apr 10
2
[cfe-dev] scan-build on Windows
...lto:rizsotto.mailinglist at gmail.com>> wrote: > > Hi Siddharth, > > alternativly you can try this > <https://github.com/rizsotto/scan-build>, it's written in Python. > > Regards, > Laszlo > > On Sat, Apr 6, 2019 at 5:14 AM Artem Dergachev via cfe-dev > <cfe-dev at lists.llvm.org <mailto:cfe-dev at lists.llvm.org>> wrote: > > Hi, > > I never tried it myself but i can try to help you with > specific problems > that you're having if you disclose them. > >...
2019 Mar 21
1
[cfe-dev] [lldb-dev] [GitHub] RFC: Enforcing no merge commit policy
On Thu, 21 Mar 2019 at 16:34, Artem Dergachev via cfe-dev < cfe-dev at lists.llvm.org> wrote: > If you're doing merge commits, you might lose linear history, but you > obtain another fancy invariant: every piece of work - i.e., every patch, > every merge conflict resolution - appears in the repository exactly > once, und...
2003 Nov 03
2
simicq 0.8.3 cannot be built from ports
Hi All! alertdialog.cpp: In method `AlertDialog::AlertDialog(QWidget *, bool = false)': alertdialog.cpp:54: invalid use of undefined type `class XOSD' ../mainwin.h:126: forward declaration of `class XOSD' alertdialog.cpp: In method `void AlertDialog::apply(ICQUser *)': alertdialog.cpp:147: invalid use of undefined type `class XOSD' ../mainwin.h:126: forward declaration of
2006 Dec 08
1
empty pages in xyplot (2.4.0)
...x~y|z, A, layout=c(1,1,10)) The snippet above produces a valid plot in R 2.3.1, while in 2.4.0 and later I see a blank page with "x" and "y" letters on it. Can anyone else reproduce this ? thank you very much ! Vladimir Dergachev
2006 Oct 31
1
Some R questions
...m wondering whether I am looking at the right place and whether anyone would be interested in a piece of C code optimizing it - in particular extraction of single element is quite slow (i.e. calls like T[i, j]). thank you very much ! Vladimir Dergachev
2006 Nov 07
1
data frame subscription operator
...ssary - could anyone help ? The reason I am looking at it is that changing attributes forces duplication of the data frame and this is the largest cause of slowness of data.frames in general. thank you very much ! Vladimir Dergachev > `[.data.frame` function (x, i, j, drop = if (missing(i)) TRUE else length(cols) == 1) { mdrop <- missing(drop) Narg <- nargs() - (!mdrop) if (Narg < 3) { if (!mdrop) warning("drop argument will be ignored") if (missing(i))...
2018 Aug 29
4
Identifying objects within BumpPtrAllocator.
In various debug dumps (eg., Clang's -ast-dump), various objects (eg., Stmts and Decls in that -ast-dump) are identified by pointers. It's very reliable in the sense that no two objects would ever have the same pointer at the same time, but it's unpleasant that pointers change across runs. Having deterministic identifiers instead of pointers would aid debugging: imagine a
2018 Aug 24
2
[cfe-dev] Soundness in clang SA
Thanks for the detailed explanation. So is changing the analysis technique from path sensitive (symbolic execution) analysis to some other technique bring in the soundness property ? Thanks, Siddharth On Sat, Aug 18, 2018 at 1:27 AM, Artem Dergachev <noqnoqneo at gmail.com> wrote: > Nope, at least not with the "path-sensitive" (symbolic execution) engine. > Which is the whole point of using the Analyzer, as compared to writing an > arbitrary tool by exploring the AST yourself. Depends on what you want to > check, o...
2020 Mar 16
3
GSOC Projects
Hey, I am Swapnil Raj I am student in Trinity College Dublin and I am interested in working on LLVM. I am really interested in two projects listed, the first one is the extending the clang AST with template information and the second is finding smart null pointer dereferences. I am passionate about compilers and interpreters, I have written a few small language based on lambda calculus. I am
2018 Aug 29
3
[cfe-dev] Identifying objects within BumpPtrAllocator.
...; wrote: > > Patch available at https://reviews.llvm.org/D51393 <https://reviews.llvm.org/D51393> > > I would really love to see this in the static analyzer, but I think all other dumping facilities could greatly benefit as well. > >> On Aug 28, 2018, at 5:14 PM, Artem Dergachev via cfe-dev <cfe-dev at lists.llvm.org <mailto:cfe-dev at lists.llvm.org>> wrote: >> >> In various debug dumps (eg., Clang's -ast-dump), various objects (eg., Stmts and Decls in that -ast-dump) are identified by pointers. It's very reliable in the sense that no two...
2008 Mar 26
5
S4 slot with NA default
Hi How do I specify an S4 class with a slot that is potentially numeric, but NA by default? I want the slot to be NA until I calculate its value (an expensive operation, not needed for all applications). When its value is known, I will create a new object with the correct value inserted in the slot. I want "NA" to signify "not known". My attempt fails because
2019 Mar 20
5
[cfe-dev] [lldb-dev] [GitHub] RFC: Enforcing no merge commit policy
Excuse my ignorance (I'm not great with Git) but how would it differ for workflows of people who use a Git repository for local work but still use `svn up + patch + svn commit <list of files>` to actually land post CR or for NFC patches, while resolving conflicts during a pull into a local (non-trunk) branch manually, after the eventual full switch to GitHub? I'm aware that SVN
2019 Apr 05
2
scan-build on Windows
Hi all, Can anyone help in installing and running "scan-build" on Windows ? Thanks, Siddharth -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190405/4e10fdaf/attachment.html>
2007 Feb 20
2
RODBC problems with unixodbc
Hi, I noticed that if a column is named "end" in a data frame (table.df below), it leads to errors when trying to sqlSave()'it to a postgresql connection: ---<---------------cut here---------------start-------------->--- con <- odbcConnect("PostgreSQL-DB", uid="user", pwd="password", case="postgresql") R>
2007 Jan 03
2
How to execute R scripts simultaneously from multiple threads
Hi All, My problem is about parallel execution of R-scripts. My platform is linux. A program that is written in C needs to execute multiple R-scripts simultaneously. The C program makes use of multi-threading. Each thread must initiate the execution of one script. Performance is very important. Appearantly the R C-API does not provide a mechanism for parallel execution.. It is preferred