代码搜索:optimization

找到约 10,000 项符合「optimization」的源代码

代码结果 10,000
www.eeworm.com/read/459172/1572902

c aes.c

/* * copyright (c) 2007 Michael Niedermayer * * some optimization ideas from aes128.c by Reimar Doeffinger * * This file is part of FFmpeg. * * FFmpeg is free software; you c
www.eeworm.com/read/457216/1599689

m chebyshev_center.m

% Section 4.3.1: Compute the Chebyshev center of a polyhedron % Boyd & Vandenberghe "Convex Optimization" % Jo雔le Skaf - 08/16/05 % % The goal is to find the largest Euclidean ball (i.e. its center an
www.eeworm.com/read/457216/1599690

m contents.m

% Chapter 4: Convex optimization problems % % chebyshev_center_2D.m - Section 4.3.1: Compute and display the Chebyshev center of a 2D polyhedron % chebyshev_center.m - Section 4.3.1:
www.eeworm.com/read/457216/1599743

m eucl_proj_cone2.m

% Euclidean projection on the semidefinite cone % Sec. 8.1.1, Boyd & Vandenberghe "Convex Optimization" % Joelle Skaf - 10/07/05 % % The projection of X0 on the proper cone K = S+^n is given by %
www.eeworm.com/read/455538/1611688

knownbug

Known bugs and suggested enhancements in libpng-1.0.7 1. March 15, 1998 -- OPTIMIZATION -- Kevin Bracey Loops need to be optimized everywhere Make them count down instead of up -- Kevin Brac
www.eeworm.com/read/455528/1612865

knownbug

Known bugs and suggested enhancements in libpng-1.0.7 1. March 15, 1998 -- OPTIMIZATION -- Kevin Bracey Loops need to be optimized everywhere Make them count down instead of up -- Kevin Brac
www.eeworm.com/read/240162/4578939

c nrv1.c

// PR c++/5636 // Bug: the named return value optimization interfered with EH cleanups. int c, d; struct A { A() { ++c; } ~A() { ++d; } }; A f() { A nrv; throw 42; return nrv; } int main
www.eeworm.com/read/240162/4579557

c unroll1.c

// PR optimization/12340 // Origin: Richard Guenther // Testcase by Eric Botcazou // This used to segfault on x86 because the loop optim
www.eeworm.com/read/240162/4579569

c noreturn-1.c

// PR optimization/12965 // Origin: // Reduced testcase: Falk Hueffner // This ICEd on Alpha because the reload pass emitted save/restore // insns around a no
www.eeworm.com/read/240162/4579596

c stack1.c

// PR optimization/11198 // Origin: Joerg Walter // Reduced testcase by: Volker Reichelt // Wolfgang Bangerth