cleanup tex
This commit is contained in:
parent
f12bcee6f2
commit
18d38b46d7
1 changed files with 14 additions and 21 deletions
|
@ -6,15 +6,20 @@
|
||||||
\usepackage[french]{babel} % langages
|
\usepackage[french]{babel} % langages
|
||||||
\frenchsetup{SmallCapsFigTabCaptions=false}
|
\frenchsetup{SmallCapsFigTabCaptions=false}
|
||||||
|
|
||||||
\newcommand{\anri}{Anri Kennel}
|
|
||||||
|
|
||||||
\newcommand{\titlename}{
|
\newcommand{\titlename}{Projet : Un ordonnanceur par work stealing}
|
||||||
Projet : Un ordonnanceur par work stealing}
|
\newcommand{\mytitle}{
|
||||||
\newcommand{\mytitle}{\href{https://www.irif.fr/~jch/enseignement/systeme/projet.pdf}{\titlename}}
|
\href{https://www.irif.fr/~jch/enseignement/systeme/projet.pdf}{\titlename}}
|
||||||
|
|
||||||
|
\newcommand{\anri}{Anri Kennel}
|
||||||
|
\newcommand{\mysubject}{Programmation système avancée}
|
||||||
|
\newcommand{\mylocation}{Université Paris Cité}
|
||||||
|
\newcommand{\mymail}{mailto:anri.kennel@etu.u-paris.fr}
|
||||||
|
|
||||||
\usepackage[
|
\usepackage[
|
||||||
pdfauthor={\anri}, % author metadata
|
pdfauthor={\anri}, % author metadata
|
||||||
pdftitle={\titlename}, % title metadata
|
pdftitle={\titlename}, % title metadata
|
||||||
|
pdfsubject={\mysubject}, % subject metadata
|
||||||
hidelinks, % clickable links in table of contents
|
hidelinks, % clickable links in table of contents
|
||||||
]{hyperref}
|
]{hyperref}
|
||||||
|
|
||||||
|
@ -31,8 +36,8 @@
|
||||||
|
|
||||||
|
|
||||||
\title{\mytitle}
|
\title{\mytitle}
|
||||||
\author{\anri\thanks{\anri : 22302653}}
|
\author{\href{\mymail}{\anri}\thanks{\anri : 22302653}}
|
||||||
\extra{Programmation système avancée $\cdot$ Université Paris Cité}
|
\extra{\mysubject~$\cdot$ \mylocation}
|
||||||
\date{Année universitaire 2023-2024}
|
\date{Année universitaire 2023-2024}
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,18 +49,6 @@
|
||||||
\section{Description}
|
\section{Description}
|
||||||
\dots
|
\dots
|
||||||
|
|
||||||
% \subsection[Pile VS File]{Choix d'une pile par rapport à une file}
|
|
||||||
% Vu qu'on "vole" des tâches aux autres threads, on récupère directement
|
|
||||||
% ce que l'on veut dans une pile au lieu de devoir faire des calculs en plus
|
|
||||||
% pour une file.
|
|
||||||
%
|
|
||||||
% De plus, la tâche la plus récente est celle qui est en haut de la pile, c'est
|
|
||||||
% ce que l'on veut récupérer.
|
|
||||||
%
|
|
||||||
% En résumé, une pile est préférée à une file dans un ordonnanceur en raison de
|
|
||||||
% sa simplicité, de son efficacité dans la gestion de la charge de travail.
|
|
||||||
|
|
||||||
|
|
||||||
\section{Statistiques}
|
\section{Statistiques}
|
||||||
\dots
|
\dots
|
||||||
|
|
||||||
|
|
Reference in a new issue