Displaying 3 results from an estimated 3 matches for "newparamet".
Did you mean:
newparam
2010 Aug 23
4
Trouble making a pure ruby puppet type
...making a cups manager type and I''m having trouble figuring out where I should parameters and where I should use properties. The file is at http://github.com/kc7zzv/puppet-cups_printer/blob/master/lib/puppet/type/cups_printer.rb .
I was accidentally using "newproperty" and "newparameter" interchangeably, and I''d really like to know which I should be using.
Second, the documentation says to define "ensure" as a parameter, but the example I saw seems to do what I''m doing in that file. Which is right?
--
You received this message because you ar...
2013 Jul 28
0
[LLVMdev] [Polly] Analysis of the expensive compile-time overhead of Polly Dependence pass
...isl_int t;
> + isl_int_init(t);
> + isl_int_set_si(t, c->getValue()->getSExtValue());
We now use isl_val instead of isl_int.
> return isl_pw_aff_alloc(Domain, Affine);
> }
> @@ -717,6 +725,34 @@ void Scop::addParams(std::vector<const SCEV *> NewParameters) {
> if (ParameterIds.find(Parameter) != ParameterIds.end())
> continue;
>
> + if (Parameter->getSCEVType() == scAddRecExpr) {
> + int index, maxIndex = Parameters.size();
> + const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(Parameter);
> +...
2013 Jul 26
6
[LLVMdev] [Polly] Analysis of the expensive compile-time overhead of Polly Dependence pass
Hi Sebastian,
Recently, I found the "Polly - Calculate dependences" pass would lead to significant compile-time overhead when compiling some loop-intensive source code. Tobias told me you found similar problem as follows:
http://llvm.org/bugs/show_bug.cgi?id=14240
My evaluation shows that "Polly - Calculate dependences" pass consumes 96.4% of total compile-time overhead