search for: gramm

Displaying 20 results from an estimated 34 matches for "gramm".

Did you mean: gram
2013 Apr 09
3
Question on Stopword Removal from a Cyrillic (Bulgarian)Text
Hi, I bumped into a serious issue while trying to analyse some texts in Bulgarian language (with the tm package). I import a tab-separated csv file, which holds a total of 22 variables, most of which are text cells (not factors), using the read.delim function: data<-read.delim("bigcompanies_ascii.csv", header=TRUE, quote="'",
2013 Apr 09
3
Question on Stopword Removal from a Cyrillic (Bulgarian)Text
Hi, I bumped into a serious issue while trying to analyse some texts in Bulgarian language (with the tm package). I import a tab-separated csv file, which holds a total of 22 variables, most of which are text cells (not factors), using the read.delim function: data<-read.delim("bigcompanies_ascii.csv", header=TRUE, quote="'",
2018 Feb 16
1
iptables routing question when using multiple IP addresses
...P address goes to one internal machine and https traffic on a second IP address goes to a different internal machine. Seems like it should be an everyday configuration, but I can't find any clear examples on how to do it. Could someone please point me in the right direction? Thanks, Ken Gramm
2017 Sep 14
1
Running COS 7.1708 on VirtualBox 5.1.28
...-----Original Message----- > From: CentOS [mailto:centos-bounces at centos.org] On Behalf Of Nicolas > Kovacs > Sent: Thursday, September 14, 2017 3:34 PM > To: centos at centos.org > Subject: Re: [CentOS] Running COS 7.1708 on VirtualBox 5.1.28 > > Le 14/09/2017 ? 21:32, Ken Gramm a ?crit?: > > Anyone else having issues getting the VB drivers to load on 1708? > > > > > > I keep gettting an "Error: unable to find the sources of your current Linux > kernel..." message. > > > > > > I do have kernel-devel installed and I had...
2017 Sep 12
3
Missing CentOS 7 Updates
I must be missing something, because I can't believe that there haven't been any updates since July 27 9fa12aadcd2ea45fdcb91bd125b619545993defa2032cf99b8a89cf6099723e8-primary.xml.gz 27-Jul-2017 15:12 4.0M [ ] 23b0e14a9667597b69a8719f0eea709721cc32f9f3b6c8202da0f5a36b9f1759-other.xml.gz 27-Jul-2017 15:12 137M [ ]
2018 Jun 04
2
[SROA][DebugInfo][GSoC] Testing SROA on amalgamated sqlite source
FWIW, I've raised the LICM issue here: https://bugs.llvm.org/show_bug.cgi?id=37682 On 31 May 2018 at 13:28, Anast Gramm <anastasis.gramm2 at gmail.com> wrote: > Thanks, > These are very helpful. > > As I understand it, SROA and LICM render some variables > "useless" by optimizing the code to not use them. Hence we can't debug > them. > > -------------- next part ---------...
2017 Sep 12
1
Missing CentOS 7 Updates
On 09/11/2017 10:14 PM, Ken Gramm wrote: > I must be missing something, because I can't believe that there haven't been any updates since July 27 > > > 9fa12aadcd2ea45fdcb91bd125b619545993defa2032cf99b8a89cf6099723e8-primary.xml.gz 27-Jul-2017 15:12 4.0M > [ ] 23b0e14a...
2017 Sep 14
2
Running COS 7.1708 on VirtualBox 5.1.28
Anyone else having issues getting the VB drivers to load on 1708? I keep gettting an "Error: unable to find the sources of your current Linux kernel..." message. I do have kernel-devel installed and I had no issues running 1611 on the same host. Thanks
2018 Mar 16
2
[GSoC 2018] Application - Improve Debugging of Optimized Code
Hello, I submitted a draft proposal at the gsoc website. You can see the application in the attached pdf. Any feedback is welcome. thanks, Anastasis -------------- next part -------------- A non-text attachment was scrubbed... Name: GSoC2018_llvm_application.pdf Type: application/pdf Size: 41454 bytes Desc: not available URL:
2018 Mar 16
0
[GSoC 2018] Application - Improve Debugging of Optimized Code
...eat work. @all, here is a link to the project description: https://llvm.org/OpenProjects.html#llvm_optimized_debugging Davide (CC'd) and I will be available as mentors. I'd be happy to help answer any questions/concerns about this project. vedant > On Mar 16, 2018, at 11:07 AM, Anast Gramm <anastasis.gramm2 at gmail.com> wrote: > > Hello, > > I submitted a draft proposal at the gsoc website. > > You can see the application in the attached pdf. > > Any feedback is welcome. > > thanks, > Anastasis > <GSoC2018_llvm_application.pdf>
2016 Oct 21
3
anonymous function parsing bug?
...ction(x) return(log(x)) f2 <- function(x) { return(log) } (x) f1(10) is a numeric, f2(10) is the log function. Again: as the latter is a legal statement, I would expect: f2 <- (function(x) { x<-x+1; log }) (x) However, regarding the answers I will try to construct the AST regarding the grammar defined in gramm.y of that statement f2 <- function(x) { x<-x+1; log } (x) to understand what the R interpreter really does. Best wishes, Wilm
2018 Apr 25
0
[GSoC 2018] Improve Debugging of Optimized Code
...your results line up with the data that Greg was able to gather on how well (or poorly) various passes handled debug info. I hope you have a great GSOC experience here. --paulr > -----Original Message----- > From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Anast > Gramm via llvm-dev > Sent: Wednesday, April 25, 2018 2:58 PM > To: llvm-dev at lists.llvm.org > Subject: [llvm-dev] [GSoC 2018] Improve Debugging of Optimized Code > > Hello, > > My proposal for GSoC 2018 [attachment] about > improving debugging of optimized code was accepted. &...
2018 Apr 25
2
[GSoC 2018] Improve Debugging of Optimized Code
Hello, My proposal for GSoC 2018 [attachment] about improving debugging of optimized code was accepted. I will work with my mentor Vedant Kumar (vsk) through the summer to find where DI loss occurs and try to fix as many occurrences as possible. I will also be keeping a devlog here: https://gramanas.github.io/ You can check what the first steps of my project are on the latest post:
2018 Aug 07
3
[RFC] Add DebugLoc parameter in Instruction’s Create() functions
Many DI-related bugs are caused by missing Debug Location in an instruction created in a transformation. Most of the time the fix is trivial once you found where the culprit instruction is created (https://reviews.llvm.org/D50263). Currently, when you create a new Instruction, in order to give it DL you have to either use an IRBuilder that is previously set to the correct DL or “manually” create
2017 Sep 12
0
Missing CentOS 7 Updates
On 09/12/2017 07:00 AM, Johnny Hughes wrote: > On 09/11/2017 10:14 PM, Ken Gramm wrote: >> I must be missing something, because I can't believe that there haven't been any updates since July 27 >> >> >> 9fa12aadcd2ea45fdcb91bd125b619545993defa2032cf99b8a89cf6099723e8-primary.xml.gz 27-Jul-2017 15:12 4.0M >> [...
2017 Sep 14
0
Running COS 7.1708 on VirtualBox 5.1.28
Le 14/09/2017 ? 21:32, Ken Gramm a ?crit?: > Anyone else having issues getting the VB drivers to load on 1708? > > > I keep gettting an "Error: unable to find the sources of your current Linux kernel..." message. > > > I do have kernel-devel installed and I had no issues running 1611 on the same...
2016 Oct 21
0
anonymous function parsing bug?
...- function(x) { return(log) } (x) > > f1(10) is a numeric, f2(10) is the log function. Again: as the latter is a > legal statement, I would expect: > f2 <- (function(x) { x<-x+1; log }) (x) > > However, regarding the answers I will try to construct the AST regarding > the grammar defined in gramm.y of that statement > f2 <- function(x) { x<-x+1; log } (x) > to understand what the R interpreter really does. > > Best wishes, > > Wilm > > > > > [[alternative HTML version deleted]]
2004 Dec 03
1
newbie question
Hello all, just managed to install dovecot as imap server on a Suse Linux box. Now running fine with mbox format. A question regarding maildir or mbox. The MDA (in my case sendmail, Mlocal = procmail) stores mbox format. Do have to modify the local mailer to store maildir format or does dovecot convert automatically from mbox when I tell dovecot to use maildir format? Thanks, for any hint.
2018 May 31
1
[SROA][DebugInfo][GSoC] Testing SROA on amalgamated sqlite source
> That is good to hear / expected, since we went though great lengths to ensure that SROA preserves variable debug info. > > Have you looked at the location-less phi instructions? > Does empty mean line 0 or do you mean they have no debug location whatsoever? Most of them have line 0, only 12 are locationless. > Are they empty for good reasons or does it look more like an
2018 May 30
0
[SROA][DebugInfo][GSoC] Testing SROA on amalgamated sqlite source
> On May 30, 2018, at 8:37 AM, Anast Gramm <anastasis.gramm2 at gmail.com> wrote: > > Introduction > ============ > > `SROA' is an early stage pass running at the very beginning of the > pipeline in `-O{1,2,3}'. Greg Bedwell's report from his DExTer tool > shows SROA on function as one of the majo...