Skip to content

Commit

Permalink
papers: add jit related
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Dec 1, 2024
1 parent a7a75fd commit c809065
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/.vitepress/components/Publications/Publications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ export default defineComponent({
name: 'doi',
link: (s: string) => `https://doi.org/${s}`,
},
hal: {
name: 'hal',
link: (s: string) => `https://inria.hal.science/${s}`,
},
online: {
name: 'online',
link: (s: string) => s,
},
conference: {
name: 'conference version',
link: (s: string) => s,
},
slides: {
name: 'slides',
link: (s: string) => s,
Expand Down Expand Up @@ -65,12 +65,12 @@ export default defineComponent({
</div>
{item.venue ? <div class="pubs-venue">{item.venue}</div> : null}
<div>
{item.links.map(link => (<a
{interleave(item.links.map(link => (<a
class="pubs-link"
href={this.formattedLink(link[0], link[1])}
> {this.getLinkName(link[0])}
</a>
))}
)), <span> | </span>)}
</div>
</li>
))}
Expand Down
27 changes: 21 additions & 6 deletions src/.vitepress/readings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ const favonia: Author = {
name: 'Kuen-Bang Hou (Favonia)',
link: 'https://favonia.org',
};
const benjaminGregoire: Author = {
name: 'Benjamin Grégoire',
link: 'https://www-sop.inria.fr/members/Benjamin.Gregoire',
}

const universes: PublicationItem[] = [
{
Expand Down Expand Up @@ -109,7 +113,7 @@ const universes: PublicationItem[] = [
authors: [tabareau, loic],
venue: 'POPL 2023',
links: [
['online', 'https://hal.inria.fr/hal-03857705'],
['hal', 'hal-03857705'],
['doi', '10.1145/3571739']
]
},
Expand Down Expand Up @@ -159,7 +163,6 @@ const equality: PublicationItem[] = [
authors: [loic, tabareau],
links: [
['doi', '10.1145/3498693'],
['conference', 'https://dl.acm.org/doi/pdf/10.1145/3498693']
],
}
]
Expand Down Expand Up @@ -277,16 +280,28 @@ const compilation: PublicationItem[] = [
]
},
{
title: 'Full reduction at full throttle',
title: 'Full Reduction at Full Throttle',
authors: [
{ name: 'Mathieu Boespflug' },
{ name: 'Maxime Dénès' }, { name: 'Benjamin Grégoire' }
{ name: 'Maxime Dénès' },
benjaminGregoire
],
venue: 'CPP 2011',
links: [
['online', 'https://inria.hal.science/hal-00650940/file/full_throttle.pdf'],
['hal', 'hal-00650940'],
['doi', '10.1007/978-3-642-25379-9_26']
]
},
{
title: 'A Compiled Implementation of Strong Reduction',
authors: [
benjaminGregoire,
{ name: 'Xavier Leroy' },
],
venue: 'ICFP 2002',
links: [
['doi', '10.1145/581478.581501'],
]
}
]

Expand Down Expand Up @@ -375,7 +390,7 @@ export const readings: Publications = [
},

{
type: 'Compilation',
type: 'Compilation and Code Generation',
items: compilation
},

Expand Down

0 comments on commit c809065

Please sign in to comment.