search for: setdefaults

Displaying 20 results from an estimated 30 matches for "setdefaults".

Did you mean: setdefault
2015 Jul 28
0
[LLVMdev] Notice for out-of-tree maintainer: RegisterScheduler::setDefault removed
Hi all, Just a notice for out-of-tree maintainer, I removed RegisterScheduler::setDefault in r243388. It was used to override the default command line option that selects the DAG scheduler to use. Instead of hacking into the command line plumbing, a target that wants more control over the selection of the scheduler than it already has with setSchedulingPreference has a SubTargetHook
2002 Feb 11
0
profile
I am running 1.3.1 on a Windows (NT 4.0) machine. I've fit a nonlinear model intended to predict crop yield from nutrient information, and want to use the profile function. If I type say, profile(simparj.fm) I get the following error message: "Error in prof$getProfile(): number of iterations exceeded maximum of 5.25515e-308" I used the profiler function to profile simparj,fm step
2011 Oct 29
2
Bruker Topspin 3.1
...E)") invoked from within "set ::env(szHostname) $::env(COMPUTERNAME)" (procedure "InitGlobals_windows" line 10) invoked from within "InitGlobals_windows" invoked from within "if [OsIsWin] { InitGlobals_windows }" (procedure "SetDefaults" line 3) invoked from within "SetDefaults" (procedure "MainProgram" line 44) invoked from within "MainProgram menu env" Error code = NONE auto_path = Z:/home/markus/install-topspin-3.1.tmp~/windows/tcl-8.5.9/lib/tcl8.5 Z:/home/markus/install-topspin-3....
2011 Mar 16
0
Quantmod getSymbol.MySQL
...ot;ACC") tdata=(xts(data[,-1], as.POSIXct(data[,1]))) *barChart(tdata)* dbDisconnect(con) This thing works fine. I mean if done through DBI and RMySQL basic command, then table get read properly and I get a wonderful chart. But doing it through getSymbol is giving problem. *first i tried * setDefaults(getSymbols.MySQL, dbname='ts') getSymbols('ACC',src='MySQL') Error in getSymbols.MySQL(Symbols = "ACC", env = <environment>, verbose = FALSE, : At least one connection argument ( ‘user’ ‘password’ ‘dbname’ ) is not set *second i tried * setDefaults(getS...
2010 Aug 18
16
[PATCH 00 of 16] libxl: autogenerate type definitions and destructor functions
The series introduces auto-generation of the type definitions used in the libxl interface followed by auto-generation of a destructor function for each type. In the future it may be possible to use the related data structures for other purposes, for example auto-generation of the functions to marshal between C and language binding data types. tools/_libxl_types.h should be identical both before
2010 May 18
2
[LLVMdev] Fast register allocation
As you may have noticed, I have been working on a fast register allocator in the last week. The new allocator is intended to replace the local allocator for debug builds. Both allocators use a local allocation strategy. Each basic block is scanned from top to bottom, and virtual registers are assigned to physical registers as they appear. There are no live registers between blocks. Everything is
2010 Sep 09
2
[PATCH]: add libxl python binding
Changes since last time: - split auto-generated code in to c and h files - un-break the build system - fix ocaml binding due to libxl API change - lot''s of tidy-ups too numerous to mention Please consider and apply :) -----8<--------------------------------------------------------------- Introduce python binding for libxl. The binding is not yet complete but list_domains,
2012 Mar 07
1
Anyone recognize "www-mysql"?
I'm transitioning someone's quite old server [Debian] to a new CentOS6 host. All going pretty well. But they server up some functionality using CGI scripts via Apache that use something referred to on the Debian box as the www-mysql package? This a binary that executes HTML pages containing embedded SQL statements. Anyone know where the source for this can be found or if it has a more
2012 Apr 16
2
[LLVMdev] Representing -ffast-math at the IR level
Thanks for the updates! Minor comments: + if (!Accuracy) + // If it's not a floating point number then it must be 'fast'. + return HUGE_VALF; Can we add an assert instead of a comment? It's just as documenting and will catch any goofs. + // If it's not a floating point number then it must be 'fast'. + return !isa<ConstantFP>(MD->getOperand(0));
2007 Aug 24
2
setting the font in FXText
I have subclassed a FXDialogBox and put a FXText in it for displaying a hex dump in my application. I want to change the font to a courier type font since it''s a hex dump. When do the following it works as expected: # A little dialog box to use in our tests class FXTextDialog < FXDialogBox def initialize(owner) # Invoke base class initialize function first super(owner,
2012 May 30
1
[PATCH QXL 2/2] libxl: Add qxl vga interface support.
Add qxl vga interface support. Usage: qxl=1 qxlvram=64 qxlram=64 Signed-off-by: Zhou Peng <ailvpeng25@gmail.com> diff -r c6641e3fe158 tools/libxl/libxl_dm.c --- a/tools/libxl/libxl_dm.c Mon May 28 16:25:59 2012 +0800 +++ b/tools/libxl/libxl_dm.c Wed May 30 17:48:38 2012 +0800 @@ -181,6 +181,8 @@ static char ** libxl__build_device_model flexarray_append(dm_args,
2016 Mar 24
2
[test-suite] r261857 - [cmake] Add support for arbitrary metrics
Let's move this to llvm-dev. I should describe my goals/motivation for the work I have been putting into the llvm-testsuite lately. This is how I see the llvm-test-suite today: - We provide a familiar cmake build system so people have a known environment to tweak compilation flags. - Together with the benchmark executable we build a .test file that describes how to invoke the benchmark and
2008 Dec 20
0
[LLVMdev] A faster instruction selector?
> On Dec 17, 2008, at 4:53 AM, Mark Shannon wrote: >> Choosing the fast selector does speed code-generation by almost >> double, >> when using llc, but the reduction in final code speed is obviously a >> downside. > [...] >> Since my toolkit generates an interpreter, I am able to just compile >> hotspots, so final speed of compiled code is quite
2016 Mar 24
0
[test-suite] r261857 - [cmake] Add support for arbitrary metrics
> On Mar 23, 2016, at 5:54 PM, Matthias Braun via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Let's move this to llvm-dev. I should describe my goals/motivation for the work I have been putting into the llvm-testsuite lately. This is how I see the llvm-test-suite today: > > - We provide a familiar cmake build system so people have a known environment to tweak
2012 Apr 16
0
[LLVMdev] Representing -ffast-math at the IR level
Hi Chandler, > Minor comments: > + if (!Accuracy) > + // If it's not a floating point number then it must be 'fast'. > + return HUGE_VALF; > > Can we add an assert instead of a comment? It's just as documenting and will > catch any goofs. Done. > > + // If it's not a floating point number then it must be 'fast'. > + return
2016 Mar 24
1
[test-suite] r261857 - [cmake] Add support for arbitrary metrics
Okay, I was intrigued, tried it and it turns out you can add make a patch for basic google benchmark support in 40 minutes: http://reviews.llvm.org/D18428 <http://reviews.llvm.org/D18428> So there is a base now if someone wants to write benchmarks for it in the future. - Matthias > On Mar 23, 2016, at 6:00 PM, Mehdi Amini via llvm-dev <llvm-dev at lists.llvm.org> wrote: >
2007 Nov 02
1
Interaction bug between Puppet CA and mod_ssl
...ow. I am happy to document this on the Wiki, if someone could suggest an appropriate location. Hoping this helps someone out there, Alex --- configuration.rb-orig 2007-11-01 21:19:47.000000000 -0400 +++ configuration.rb 2007-11-01 21:03:27.000000000 -0400 @@ -136,6 +136,8 @@ Puppet.setdefaults(:ssl, :certname => [fqdn, "The name to use when handling certificates. Defaults to the fully qualified domain name."], + :caname => [fqdn, "The name used for the CA certificate. Defaults + to the fully qualified domain name."],...
2008 Dec 17
1
[LLVMdev] A faster instruction selector?[MESSAGE NOT SCANNED]
Hi Nicolas and Dan, Thanks for your replies. I've been playing around with various setting, as you suggested. > What version of LLVM are you using here? I'm using 2.4 My original time ratios of reg-alloc to instruction selection (1:12) referred to the local register allocator and the standard instruction selector (all passes), not a sensible comparison, I realise. > I did
2009 Jan 15
2
Partial function application in R
Hello, in a desperate desire of using partial function application in R I fried out the following piece of code: bind <- function( f, ... ) { args <- list(...) function(...) f( ..., unlist(args) ) } Its purpose, if not clear, is to return a function with part of its arguments bound to specific values, so that I can for example create and use functions like this: q1 <- bind(
2012 Apr 16
0
[LLVMdev] Representing -ffast-math at the IR level
Here's a revised patch, plus patches showing how fpmath metadata could be turned on in clang and dragonegg (it seemed safest for the moment to condition on -ffast-math rather than on one of the flags implied by -ffast-math). Major changes: - The FPMathOperator class can no longer be used to change math settings, only to read them. Currently it can be queried for accuracy info. I split the