similar to: [LLVMdev] How to avoid this transformation

Displaying 20 results from an estimated 4000 matches similar to: "[LLVMdev] How to avoid this transformation"

2005 Apr 26
0
[LLVMdev] How to avoid this transformation
On Mon, 25 Apr 2005, Ricardo wrote: > I am trying to compile a program to be used for Pool Allocation. The program tries to allocate > certain number of nodes inside a function that is called by main. The problem is that llvm-gcc > insists in "optimize" the function so that certain number of nodes are created in main and the > rest are created inside the original function. In
2005 Nov 23
2
Really supress output from Sweave
Hi, I am using Sweave for chapters in my thesis that contain results. In the beginning of each chapter, I use this to load libraries I need. <<init,echo=FALSE,quiet=TRUE>>= library(gplots) library(Hmisc) library(e1071) @ What I want is, of course, to supress messages written by this code, but what I get in the end is X-init.tex with this the contents below. How do I really supress
2006 Apr 22
4
How to supress field name in error message?
Hi How do I supress the reporting of a field name in the full error message? I want the error to be associated with the field so that the .fieldWithErrors class is applied to the field but I don''t want it to add the field name to the actual error message. For example: errors.add("occurs_on", "The date can''t be today!") unless occurs_on != Date.today I
2004 Jun 02
1
Fax Recognizion without Answer? How to Supress this?
Hello, we have a PRI (E1) to a carrier and a second one to a legacy PBX: DTAG ---pri---- * ------ Hicmo (PSTN) | | Sip and more Many normal inbound calls are direcly routed to the hicom. Outbound calls from the Hicom go through LCR and then to PSTN. Inbound faxes are working, but outbound faxes from hicom to pstn are
2018 Aug 21
3
ess 17.11-3 won't install on Ubuntu 16.04
On Mon, Aug 20, 2018 at 10:43:52AM -0500, Dirk Eddelbuettel wrote: > > On 20 August 2018 at 15:29, Eva Myers wrote: > | Hello, > | Attempting to install ess (17.11-3xenial0) on our Ubuntu 16.04 systems > | is failing with an error message. > > This can happen. I (with my Debian hat on) had to make 17.11-3 because the > ess package did not behave with Debian untable and
2013 Jul 15
2
suppress startup messages from default packages
Hi all, several packages print messages during loading. How do I avoid to see them when the packages are in the defaultPackages? Here is an example. With this in ~/.Rprofile ,----[ ~/.Rprofile ] | old <- getOption("defaultPackages") | options(defaultPackages = c(old, "filehash")) | rm(old) `---- I get as last line when starting R: ,---- | filehash: Simple key-value
2006 Feb 22
4
heatmap.2 in gplots package
Hello all, I am using the heatmap.2 function in the gplots package. I want to supress the reordering of the columns of the data matrix i pass to the function. I used the statement, heatmap.2(z,Colv=FALSE,dendrogram="row",col=redgreen(75)) where z, is the matrix of data. The output i want should have the rows reordered along with the dendrogram and the columns should be in the original
2004 Jul 15
3
Important note for AGI with PHP newbies
I say this note is important only because I (a AGI PHP newbie) was tormented by this problem for many an hour, even though I'm sure it's documented somewhere or obvious to more experienced users. So as I was experimenting with AGI in PHP scripting I was baffled by why Asterisk was properly receiving AGI commands written to stdout but always returning "510 invalid command" to the
2010 Nov 19
1
gomp library with Rtools212
Dear developers, I am a maintainer of the CORElearn package which uses OpenMP multithreading to speed up some computations. When producing a new release we tested the package with the latest R 2.12.0. On Linux the package works normally. On Windows we installed a recommended version of Rtools (Rtools212) but the linker fails with the messages below. ... g++
2018 Aug 20
3
ess 17.11-3 won't install on Ubuntu 16.04
Hello, Attempting to install ess (17.11-3xenial0) on our Ubuntu 16.04 systems is failing with an error message. root at kore:/home/eva# apt-get install ess [...] Install ess for emacs24 install/ess: Handling install for emacsen flavor emacs24 ERROR: install script from ess package failed dpkg: error processing package ess (--configure): subprocess installed post-installation script returned
2002 Sep 13
1
supress access to the /etc/passwd
Hi, I've just install samba 2.2 with ldap support, it is working just fine. I've create some samba users using smbpasswd and they are inserted into the ldap directory. But, I was wondering if it was possible to delegate the full authentification process to ldap. That's to say completely remove any information from /etc/passwd? Thanks. -------------- next part -------------- HTML
2006 Feb 15
6
asterisk silence suppression?
Hi all, I'm getting some noise gate like effects on our sip lines & I think I need to disable silence supression, I'm searching docs & not finding where this can be set, does * have a setting to turn this off? basically what's happening is when we stop talking, the other end hears total silence, but when we talk, they can hear the background noise in the office, this sounds odd
2008 Jul 29
2
About clustering techniques
Hello R users It's some time I am playing with a dataset to do some cluster analysis. The data set consists of 14 columns being geographical coordinates and monthly temperatures in annual files latitutde - longitude - temperature 1 -..... - temperature 12 I have some missing values in some cases, maybe there are 8 monthly valid values at some points with four non valid. I don't want to
2017 Jul 29
3
Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
> On Jul 28, 2017, at 1:56 PM, hw <hw at gc-24.de> wrote: > >> Many bugs are fixed in Fedora. Many more bugs are fixed in the >> upstreams. Please remember that Fedora is primarily an *integration* >> project, and the best way to get bugs fixed is for the developers of >> the code in question to be involved. Many Fedora maintainers help >> facilitate this
2002 Sep 24
4
print(), paste()
Hi, Suppose I have the following lines at the end of a function: answer <- c(2, 1, 0, 4, 5) # In fact, answer will be generate in my # function print(answer) # Print the answer # Now, find the best fitted n degree polynomial print(paste("The best fit is with", which.min(answer) - 1, "-degree polynomial")) this will return:
2010 Nov 24
3
Custom ticks on x axis when dates are involved
Hi, I have a set of irregular time series and i want to produce a simple plot, with dates on x axis and attribute value of y axis. This is simple enough but my x axis is divided automatically by ticks every 5 years. I would like to have a tick every year at January 1st. I am not sure how i can do that - i end up with something very close to what i want, but it is clunky and not very correct. I
2006 Jul 16
1
Don''t log params
Hello! I need to supress the logging of params for certain actions, i.e. I don''t want the params hash to show up in one of my actions. Does anyone know how to do that? Thanks, Rob -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060716/62b2e2d5/attachment.html
2006 Jun 28
1
Query about security mode
Hi Is there a way to have the security level in smb.conf as user and supress the authentication? or is there a way to read the authentication automatically from some file so that, my security mode remains at user level and the functionality will be of share level. ie. when i open a samba share, i should directly go to the share page without authentication. Thanks Rajesh
2006 Mar 01
1
Boat loads of: 'localhost kernel: cdrom: open failed.'
Another question: How can a supress these messages from filling up my syslog file? Mar 1 01:31:26 localhost kernel: cdrom: open failed. Mar 1 01:31:57 localhost last message repeated 15 times Mar 1 01:31:59 localhost kernel: cdrom: open failed. Mar 1 01:32:01 localhost kernel: cdrom: open failed. I've got 'noauto' in
2008 Sep 19
1
Bug#499415: setting package to logcheck-database logtail logcheck, tagging 499393, tagging 499415
# Automatically generated email from bts, devscripts version 2.10.35 # via tagpending # # logcheck (1.3.2) experimental; urgency=low # # * Apply patch from Jari Aalto for fixing package description paragraph # ordering by importence, thanks (closes: #499415) # * Supress cron session closed messages too, thanks to Ferenc Wagner for # noticing (closes: #499393) # package logcheck-database