Home
last modified time | relevance | path

Searched refs:reductions (Results 1 – 25 of 2990) sorted by relevance

12345678910>>...120

/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/reductions/solvers/
H A Dsolving_chain.py9 from cvxpy.reductions.chain import Chain
76 reductions = []
81 reductions += [Dgp2Dcp()]
105 reductions += [FlipObjective()]
117 return reductions
168 reductions = [EvalParams()] + reductions
172 reductions = [EvalParams()] + reductions
183 return SolvingChain(reductions=reductions)
239 return SolvingChain(reductions=reductions)
267 reductions=reductions)
[all …]
H A Dintermediate_chain.py16 from cvxpy.reductions.chain import Chain
17 from cvxpy.reductions.complex2real import complex2real
20 from cvxpy.reductions.dgp2dcp.dgp2dcp import Dgp2Dcp
56 reductions = []
58 return Chain(reductions=reductions)
63 reductions += [Dgp2Dcp()]
87 reductions += [FlipObjective()]
91 reductions += [CvxAttr2Constr(),
93 return Chain(reductions=reductions)
100 reductions += [Dcp2Cone(),
[all …]
H A Ddefines.py20 from cvxpy.reductions.solvers.conic_solvers.cbc_conif import CBC as CBC_con
21 from cvxpy.reductions.solvers.conic_solvers.cplex_conif import (
23 from cvxpy.reductions.solvers.conic_solvers.cvxopt_conif import (
26 from cvxpy.reductions.solvers.conic_solvers.diffcp_conif import (
28 from cvxpy.reductions.solvers.conic_solvers.ecos_bb_conif import (
32 from cvxpy.reductions.solvers.conic_solvers.glpk_mi_conif import (
34 from cvxpy.reductions.solvers.conic_solvers.gurobi_conif import (
36 from cvxpy.reductions.solvers.conic_solvers.mosek_conif import (
40 from cvxpy.reductions.solvers.conic_solvers.scipy_conif import (
43 from cvxpy.reductions.solvers.conic_solvers.xpress_conif import (
[all …]
/dports/math/cocoalib/CoCoALib-0.99712/src/server/benchmarks/
H A Dtimings-point6 # reductions = 1210
13 # reductions = 2791
20 # reductions = 700
27 # reductions = 449
34 # reductions = 5013
41 # reductions = 1413
48 # reductions = 1401
62 # reductions = 29
101 # reductions = 632
115 # reductions = 449
[all …]
H A Dtimings-bigattipb10 # reductions = 1210
17 # reductions = 2791
24 # reductions = 700
31 # reductions = 449
38 # reductions = 5013
45 # reductions = 1413
52 # reductions = 1401
66 # reductions = 29
103 # reductions = 632
117 # reductions = 449
[all …]
/dports/math/giacxcas/CoCoALib-0.99700/src/server/benchmarks/
H A Dtimings-point6 # reductions = 1210
13 # reductions = 2791
20 # reductions = 700
27 # reductions = 449
34 # reductions = 5013
41 # reductions = 1413
48 # reductions = 1401
62 # reductions = 29
101 # reductions = 632
115 # reductions = 449
[all …]
H A Dtimings-bigattipb10 # reductions = 1210
17 # reductions = 2791
24 # reductions = 700
31 # reductions = 449
38 # reductions = 5013
45 # reductions = 1413
52 # reductions = 1401
66 # reductions = 29
103 # reductions = 632
117 # reductions = 449
[all …]
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/reductions/dcp2cone/atom_canonicalizers/
H A D__init__.py20 from cvxpy.reductions.dcp2cone.atom_canonicalizers.entr_canon import *
21 from cvxpy.reductions.dcp2cone.atom_canonicalizers.exp_canon import *
22 from cvxpy.reductions.dcp2cone.atom_canonicalizers.geo_mean_canon import *
23 from cvxpy.reductions.dcp2cone.atom_canonicalizers.huber_canon import *
25 from cvxpy.reductions.dcp2cone.atom_canonicalizers.kl_div_canon import *
28 from cvxpy.reductions.dcp2cone.atom_canonicalizers.log_canon import *
29 from cvxpy.reductions.dcp2cone.atom_canonicalizers.log1p_canon import *
35 from cvxpy.reductions.dcp2cone.atom_canonicalizers.pnorm_canon import *
36 from cvxpy.reductions.dcp2cone.atom_canonicalizers.power_canon import *
43 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers import (
[all …]
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/reductions/
H A D__init__.py17 from cvxpy.reductions.inverse_data import InverseData
18 from cvxpy.reductions.reduction import Reduction
19 from cvxpy.reductions.solution import Solution
21 from cvxpy.reductions.chain import Chain
23 from cvxpy.reductions.cvx_attr2constr import CvxAttr2Constr
25 from cvxpy.reductions.dcp2cone.dcp2cone import Dcp2Cone
26 from cvxpy.reductions.dgp2dcp.dgp2dcp import Dgp2Dcp
27 from cvxpy.reductions.dqcp2dcp.dqcp2dcp import Dqcp2Dcp
28 from cvxpy.reductions.eval_params import EvalParams
29 from cvxpy.reductions.flip_objective import FlipObjective
[all …]
H A Dchain.py2 from cvxpy.reductions.reduction import Reduction
14 def __init__(self, problem=None, reductions=None) -> None: argument
16 self.reductions = [] if reductions is None else reductions
19 return str(self.reductions)
22 return "Chain(reductions=%s)" % repr(self.reductions)
25 for reduction in self.reductions:
48 for r in self.reductions:
73 for r in self.reductions:
83 for r, inv in reversed(list(zip(self.reductions, inverse_data))):
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/reductions/dgp2dcp/atom_canonicalizers/
H A D__init__.py29 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.add_canon import add_canon
30 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.constant_canon import (
36 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.geo_mean_canon import (
38 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.gmatmul_canon import (
44 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.norm1_canon import (
46 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.norm_inf_canon import (
52 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.pnorm_canon import (
54 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.power_canon import (
57 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.quad_form_canon import (
62 from cvxpy.reductions.dgp2dcp.atom_canonicalizers.trace_canon import (
[all …]
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/reductions/eliminate_pwl/atom_canonicalizers/
H A D__init__.py19 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.abs_canon import (
21 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.cummax_canon import (
23 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.cumsum_canon import (
25 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.max_canon import (
27 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.maximum_canon import (
29 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.min_canon import (
31 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.minimum_canon import (
33 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.norm1_canon import (
35 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.norm_inf_canon import (
37 from cvxpy.reductions.eliminate_pwl.atom_canonicalizers.sum_largest_canon import (
/dports/lang/racket/racket-8.3/share/pkgs/macro-debugger/tests/macro-debugger/tests/
H A Dperf.rkt18 (define (perf-libs mods #:reductions? [reductions? #f] #:hiding? [hiding? #f])
19 (for ([m mods]) (perf-lib m #:reductions? reductions? #:hiding? hiding?)))
21 (define (perf-lib m #:reductions? [reductions? #f] #:hiding? [hiding? #f])
24 (when reductions?
27 (with-log-time [m 'reductions] (reductions+ deriv))))
28 (when (and reductions? hiding?)
32 (reductions+ deriv))))
52 (perf-libs modules-for-test #:reductions? #t #:hiding? #t)))
/dports/graphics/optipng/optipng-0.7.7/src/opngreduc/
H A Dopngreduc.c316 png_uint_32 reductions) in opng_analyze_bits() argument
459 return reductions; in opng_analyze_bits()
472 png_uint_32 reductions) in opng_reduce_bits() argument
497 reductions = opng_analyze_bits(png_ptr, info_ptr, reductions); in opng_reduce_bits()
498 if (reductions == OPNG_REDUCE_NONE) in opng_reduce_bits()
647 return reductions; in opng_reduce_bits()
657 png_uint_32 reductions) in opng_reduce_palette_bits() argument
776 png_uint_32 reductions) in opng_reduce_to_palette() argument
1073 png_uint_32 reductions) in opng_reduce_palette() argument
1277 png_uint_32 reductions) in opng_reduce_image() argument
[all …]
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/reductions/complex2real/atom_canonicalizers/
H A D__init__.py37 from cvxpy.reductions.complex2real.atom_canonicalizers.abs_canon import (
39 from cvxpy.reductions.complex2real.atom_canonicalizers.aff_canon import (
41 from cvxpy.reductions.complex2real.atom_canonicalizers.constant_canon import (
43 from cvxpy.reductions.complex2real.atom_canonicalizers.equality_canon import (
45 from cvxpy.reductions.complex2real.atom_canonicalizers.inequality_canon import (
47 from cvxpy.reductions.complex2real.atom_canonicalizers.matrix_canon import (
50 from cvxpy.reductions.complex2real.atom_canonicalizers.param_canon import (
52 from cvxpy.reductions.complex2real.atom_canonicalizers.pnorm_canon import (
54 from cvxpy.reductions.complex2real.atom_canonicalizers.psd_canon import (
56 from cvxpy.reductions.complex2real.atom_canonicalizers.soc_canon import (
[all …]
/dports/lang/perl5.34/perl-5.34.0/cpan/Scalar-List-Utils/t/
H A Dreductions.t8 use List::Util qw( reductions );
10 is_deeply( [ reductions { } ], [],
15 [ reductions { $a + $b } 1 .. 5 ],
22 my $ret = reductions { $a + $b } 1 .. 3;
32 my @ret = reductions { $b } map { bless [], "Guardian" } 1 .. 5;
45 reductions { die "stop" if $b == 4; bless [], "Guardian" } 1 .. 4;
/dports/lang/perl5.32/perl-5.32.1/cpan/Scalar-List-Utils/t/
H A Dreductions.t8 use List::Util qw( reductions );
10 is_deeply( [ reductions { } ], [],
15 [ reductions { $a + $b } 1 .. 5 ],
22 my $ret = reductions { $a + $b } 1 .. 3;
32 my @ret = reductions { $b } map { bless [], "Guardian" } 1 .. 5;
45 reductions { die "stop" if $b == 4; bless [], "Guardian" } 1 .. 4;
/dports/lang/p5-Scalar-List-Utils/Scalar-List-Utils-1.60/t/
H A Dreductions.t8 use List::Util qw( reductions );
10 is_deeply( [ reductions { } ], [],
15 [ reductions { $a + $b } 1 .. 5 ],
22 my $ret = reductions { $a + $b } 1 .. 3;
32 my @ret = reductions { $b } map { bless [], "Guardian" } 1 .. 5;
45 reductions { die "stop" if $b == 4; bless [], "Guardian" } 1 .. 4;
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/cpan/Scalar-List-Utils/t/
H A Dreductions.t8 use List::Util qw( reductions );
10 is_deeply( [ reductions { } ], [],
15 [ reductions { $a + $b } 1 .. 5 ],
22 my $ret = reductions { $a + $b } 1 .. 3;
32 my @ret = reductions { $b } map { bless [], "Guardian" } 1 .. 5;
45 reductions { die "stop" if $b == 4; bless [], "Guardian" } 1 .. 4;
/dports/devel/py-guppy3/guppy3-3.1.2/guppy/etc/
H A DKnuthBendix.py69 self.reductions = []
77 self.reductions.append((a, b))
102 self.reductions.append((p, q))
110 reds = list(self.reductions)
138 self.reductions[i] = nullred
144 self.reductions[i] = urv
147 if len(newr) != self.reductions:
149 self.reductions = newr
169 for uv in self.reductions:
189 reds = self.reductions
[all …]
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/recon/test/
H A Drecon_SUITE.erl64 [{work, [{reductions,_}]}, {work, [{reductions,_}]}]
86 {work, [reductions]}],
100 ?assertMatch(?REDUCTIONS_MATCH([{work,[{reductions,_}]},
101 {work,[{reductions,_}]},
103 ?assertMatch(?REDUCTIONS_MATCH([{work,[{reductions,_}]},
104 {work,[{reductions,_}]},
106 ?assertMatch(?REDUCTIONS_MATCH([{work,[{reductions,_}]},
121 {work, [reductions]}],
154 15 = length(recon:proc_count(reductions, 15)).
157 Res = recon:proc_window(reductions, 10, 100),
[all …]
/dports/devel/erlang-recon/recon-2.5.2/test/
H A Drecon_SUITE.erl64 [{work, [{reductions,_}]}, {work, [{reductions,_}]}]
86 {work, [reductions]}],
100 ?assertMatch(?REDUCTIONS_MATCH([{work,[{reductions,_}]},
101 {work,[{reductions,_}]},
103 ?assertMatch(?REDUCTIONS_MATCH([{work,[{reductions,_}]},
104 {work,[{reductions,_}]},
106 ?assertMatch(?REDUCTIONS_MATCH([{work,[{reductions,_}]},
121 {work, [reductions]}],
154 15 = length(recon:proc_count(reductions, 15)).
157 Res = recon:proc_window(reductions, 10, 100),
[all …]
/dports/devel/bison/bison-3.7.6/src/
H A Dstate.c98 static reductions *
102 reductions *res = xmalloc (offsetof (reductions, rules) + rules_size); in reductions_new()
138 res->reductions = NULL; in state_new()
164 res->reductions = reductions_new (s->reductions->num, s->reductions->rules); in state_new_isocore()
186 free (s->reductions); in state_free()
228 aver (!s->reductions); in state_reductions_set()
229 s->reductions = reductions_new (num, reds); in state_reductions_set()
236 reductions *reds = s->reductions; in state_reduction_find()
266 reductions *reds = s->reductions; in state_rule_lookaheads_print()
290 reductions *reds = s->reductions; in state_rule_lookaheads_print_xml()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/Dialect/Affine/Transforms/
H A DAffineParallelize.cpp41 : loop(l), reductions(std::move(r)) {} in ParallelizationCandidate()
46 SmallVector<LoopReduction> reductions; member
57 SmallVector<LoopReduction> reductions; in runOnFunction() local
58 if (isLoopParallel(loop, parallelReductions ? &reductions : nullptr)) in runOnFunction()
59 parallelizableLoops.push_back({loop, std::move(reductions)}); in runOnFunction()
73 if (failed(affineParallelize(loop, candidate.reductions))) { in runOnFunction()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Dialect/Affine/Transforms/
H A DAffineParallelize.cpp41 : loop(l), reductions(std::move(r)) {} in ParallelizationCandidate()
46 SmallVector<LoopReduction> reductions; member
57 SmallVector<LoopReduction> reductions; in runOnFunction() local
58 if (isLoopParallel(loop, parallelReductions ? &reductions : nullptr)) in runOnFunction()
59 parallelizableLoops.push_back({loop, std::move(reductions)}); in runOnFunction()
73 if (failed(affineParallelize(loop, candidate.reductions))) { in runOnFunction()

12345678910>>...120