Site Map:
Download!
Search this Site
Useful Links
Release Emails
Maintained by the
llvm-admin team
|
2015 LLVM Developers' Meeting
A huge thank you to our sponsors!
Diamond Sponsors:
Apple
QuIC
Platinum Sponsors:
Google
Sony Computer Entertainment America
Silver Sponsors:
HSA Foundation
Bronze Sponsors:
Microsoft
About
The LLVM Foundation announces the ninth annual bay area LLVM Developers' Meeting will be held October 29th and 30th in San Jose, CA.
This year the conference will be 2 full days that include technical talks, BoFs, hacker’s lab, tutorials, and a poster session. Attendance will be capped at 350.
The meeting serves as a forum for LLVM,
Clang, LLDB and
other LLVM project developers and users to get acquainted, learn how LLVM is used, and
exchange ideas about LLVM and its (potential) applications. More broadly, we
believe the event will be of particular interest to the following people:
- Active developers of projects in the LLVM Umbrella
(LLVM core, Clang, LLDB, libc++, compiler_rt, klee, dragonegg, lld, etc).
- Anyone interested in using these as part of another project.
- Compiler, programming language, and runtime enthusiasts.
- Those interested in using compiler and toolchain technology in novel
and interesting ways.
Please sign up for the LLVM Developers' Meeting list for future announcements and to ask questions.
http://lists.llvm.org/mailman/listinfo/llvm-devmeeting
You may also contact the organizer: Tanya Lattner
October 29 - Meeting Agenda
The schedule may be viewed here: http://devmtg15.llvm.org.
Media | Talk |
Slides
| Welcome Tanya Lattner, LLVM Foundation |
Slides Video | WebAssembly: Here Be Dragons Jf Bastien, Google Dan Gohman, Mozilla |
Slides Video | A Proposal for Global Instruction Selection Quentin Colombet, Apple |
Slides Video | Input Space Splitting for OpenCL Johannes Doerfert, Saarland University |
Slides Video | Profile-based Indirect Call Promotion Ivan Baev, QuIC |
Slides Video | Beyond Sanitizers: guided fuzzing and security hardening Kostya Serebryany, Google |
Slides Video | Automated performance-tracking of LLVM-generated code Kristof Beyls, ARM |
Slides Video | A Heterogeneous Execution Engine for LLVM Christos Margiolas, University of Edinburgh |
Slides Video | Tutorial: Building, Testing and Debugging a Simple out-of-tree LLVM Pass Serge Guelton, Quarkslab
Adrien Guinet, Quarkslab
|
Slides Video | Tutorial: Creating an SPMD Vectorizer for OpenCL with LLVM Pierre-Andre Saulais, Codeplay Software |
Slides Video | Tutorial: Polly - Optimistic Loop Nest Optimizations with Schedule Trees Tobias Grosser, ETH Zurich
Johannes Doerfert, Saarland University |
Slides Video | Tutorial/BoF: Living Downstream Without Drowning Paul Robinson, Sony Computer Entertainment
Michael Edwards, Sony Computer Entertainment |
October 30 - Meeting Agenda
The schedule may be viewed here: http://devmtg15.llvm.org.
Media | Talk |
Slides Video | Swift's High-Level IR: A Case Study of Complementing LLVM IR with Language-Specific Optimization Joseph Groff, Apple Inc.
Chris Lattner, Apple Inc. |
Slides Video | Typeless Pointers in LLVM IR David Blaikie, Google Inc. |
Slides Video | LLVM Performance Improvements and Headroom Gerolf Hoflehner, Apple |
Slides Video | Optimizing LLVM for GPGPU Jingyue Wu, Google Inc. |
Slides Video | Exception handling in LLVM, from Itanium to MSVC Reid Kleckner, Google
David Majnemer, Google |
Slides Video | OpenMP GPU/Accelerator support Coming of Age in Clang Michael Wong, IBM
Alexey Bataev, Intel |
Slides Video | An update on Clang-based C++ Tooling Daniel Jasper, Google
Manuel Klimek, Google |
Slides Video | LLVM for a managed language: what we've learned Sanjoy Das, Azul Systems
Philip Reames, Azul Systems |
Slides Video | Throttling Automatic Vectorization: When Less Is More Vasileios Porpodas, University of Cambridge |
Slides Video | LLVM back end for HHVM/PHP Brett Simmers, Facebook, Inc.
Maksim Panchenko, Facebook, Inc. |
Slides Video | LoopVersioning LICM Ashutosh Nema, AMD |
Slides Video | Compiling large, real-world codebases with clang on Windows Hans Wennborg, Google Inc.
Nico Weber, Google Inc. |
Slides Video | Debug Info: From Metadata to Modules Duncan Exon Smith, Apple
Adrian Prantl, Apple |
Slides Video | Advances in Loop Analysis Frameworks and Optimizations Adam Nemet - Apple Inc.
Michael Zolotukhin, Apple Inc. |
Talk Abstracts
WebAssembly: Here Be Dragons
Jf Bastien - Google
Dan Gohman - Mozilla
Slides
Video
WebAssembly is a tale of four browser vendors, seeking new languages and capabilities while staying fast, secure and portable. The old JavaScript wizard still has many spells under its belt, but it seeks a companion on its quest to reach VM utopia. WebAssembly is that companion.
In this quest, mad alchemist Dan and jester JF will detail their exploration of LLVM-land. You’ll get to witness firsthand their exploration of ISel and MI, hear of their wondrous encounter with MC, and gasp at the Spell of Restructuring wherein SSA+CFG is transmuted into regs+AST. Will our adventurers conquer the Target and capture the virtual ISA?
Join us in this exciting tale to which *you* are the hero!
A Proposal for Global Instruction Selection
Quentin Colombet - Apple
Slides
Video
Our existing instruction selection framework, SelectionDAGISel (SDISel), has some fundamental limitations, including, but not limited to, slow compile time, basic block only scope, and monolithic approach. Over the years, we spent a lot of effort to workaround these limitations with more target hooks and more optimizations passes (e.g., CodeGenPrepare, ConstantHoisting) with their own problems (inaccurate heuristic, have to predict what the instruction selector will do, etc.) and limitations.
We believe that it is time to come up with a new instruction selection framework, global-isel, that will solve these problems while offering new opportunities to improve our code generation. In this talk, we will present our plan to bring global-isel to LLVM.
Input Space Splitting for OpenCL
Johannes Doerfert - Saarland University
Slides
Video
OpenCL programs are prone to memory and control flow divergence. When
implementing OpenCL for machines with explicit SIMD instructions,
compilers can usually generate more efficient code if they can prove
non-divergence of memory and branch instructions. To this end, they
leverage a so-called divergence analysis. However, in practice
divergence is often input-dependent and exhibited for some, but not
all inputs. Hence, static analyses fail to prove non-divergence. To
obtain good performance, developers can manually split the input
space, however this is a tedious and error prone task.
In this talk we present a new OpenCL to CPU compiler pipeline that
addresses this problem by automatically ensuring divergence free
control flow through program specialization. To this end we represent
the full kernel as well as the implicit work item dimensions in the
polyhedral model. For data dependent control flow and non-affine
expression overapproximation is used. From the polyhedral iteration
domains and memory access functions we can then derive conditions for
the absence of memory as well as control divergence. Based one these
conditions the input space is split in order to generate specialized
kernel versions with beneficial divergence characteristics. Commonly
large parts of the input exhibit regular access and control patterns
and only a fixed size boundary of the input space does not. In such
cases we can achieve speedups almost as high as the used vectorization
with. However, also for non-diverging kernels our technique can
improve the performance due to simplifications in the polyhedral
model.
Profile-based Indirect Call Promotion
Ivan Baev - QuIC
Slides
Video
Indirect call promotion (ICP) is the second most profitable profile-based optimization according to a recent study. This talk will present LLVM ICP pass that iterates over all indirect call sites in the module and selectively transforms them. We will discuss how subsequent optimizations in the compiler pipeline may benefit from ICP.
Beyond Sanitizers: guided fuzzing and security hardening
Kostya Serebryany - Google
Slides
Video
The Sanitizers (AddressSanitizer and friends) allow you to find many stability and security bugs in C++ code, but they are only as good as your tests are. In this talk we will show how to improve your test coverage with guided fuzzing (libFuzzer) and how to protect your applications in production even if some bugs are still there (Control Flow Integrity and SafeStack).
Automated performance-tracking of LLVM-generated code
Kristof Beyls - ARM
Slides
Video
Ensuring that top-of-trunk consistently generates high-quality code remains harder than it should be. Continuous integration (CI) setups that track correctness of top-of-trunk work pretty well today since they automatically report correctness regressions with low false positive rate to committers. In comparison, the output generated by CI setups that track performance require far more human effort to interpret.
In this talk, I’ll describe why I think effective performance tracking is hard and what problems need solving, with a focus on our real world experiences and observations.
As part of the bring-up of one of the public performance tracking bots, I’ve done an in-depth analysis of its performance and noise characteristics. The insights gained from this analysis drove a number of improvements to LNT and the test-suite in the past year. I hope that sharing these insights will help others in setting up low-noise performance-tracking bots.
I’ll conclude by summarizing what seem to be the most important missing pieces of CI functionality to make the performance-tracking infrastructure as effective as the correctness-tracking infrastructure.
A Heterogeneous Execution Engine for LLVM
Christos Margiolas - University of Edinburgh
Slides
Video
Hexe, which stands for Heterogeneous Execution Engine, is an new compiler component that integrates with the LLVM infrastructure. It targets efficient computation on heterogeneous platforms by allowing the automatic offloading of workloads on computational accelerators, such as Graphics Processing Units (GPUs) or Digital Signal Processors(DSPs).
The workloads we consider for offloading are either explicitly annotated by the programmer or automatically detected by static compiler analysis and runtime checks. Our infrastructure operates at the level of LLVM intermediate representation and effectively supports multiple source languages.
Hexe consists of a set of compiler passes and a runtime environment. The compiler passes perform the required code analysis and transformations to enable workload offloading. The runtime environment manages data transfers and synchronization operations, and performs dynamic workload scheduling.
We consider a diverse set of heterogeneous systems ranging from mobile devices equipped with arm based multi-core CPUs, embedded GPUs and DSPs to data center nodes consisting of x86 multi-cores and high-end GPUs. Hexe has a modular design where new accelerator types and programming environments can be supported via a plugin interface. We also consider interoperability between Hexe and modern JIT technologies, such as LLVM MCJIT.
Swift's High-Level IR: A Case Study of Complementing LLVM IR with Language-Specific Optimization
Joseph Groff - Apple Inc.
Chris Lattner - Apple Inc.
Slides
Video
The Swift programming language is built on LLVM and uses LLVM IR and the LLVM backend for code generation, but it also contains a new high-level IR called SIL to model the semantics of the language (and perform optimizations) at a higher level. In this talk, we discuss the motivations and applications of SIL, including high-level semantic analyses and transformations such as flow-dependent diagnostics, devirtualization, specialization, reference counting optimization, and TBAA, and we compare SIL's design with that of LLVM IR.
Typeless Pointers in LLVM IR
David Blaikie - Google Inc.
Slides
Video
In an effort to simplify and canonicalize LLVM IR surrounding pointer expressions, the type information from pointers is being removed. Hear about the current changes, utilities for updating your test cases, as well as current open questions and future work.
LLVM Performance Improvements and Headroom
Gerolf Hoflehner - Apple
Slides
Video
While LLVM is known for very fast compile-time, many developers in the community also push for improving run-time performance of generated code. This talk highlights this year’s performance gains on AArch64 in key benchmarks like SPEC2006, Kernels and also the llvm test suite. While progress has been impressive more work needs to be done. Therefore we will discuss future performance headroom which involves both expanding existing and architecting new optimizations.
Optimizing LLVM for GPGPU
Jingyue Wu - Google Inc.
Slides
Video
This talk presents Google’s effort of optimizing LLVM for CUDA. When we started this effort, LLVM was well-tuned for CPUs but there had been little public work on improving its GPU performance. We developed, tuned, and augmented several general and CUDA-specific optimization passes. As a result, our LLVM-based compiler generates better code than nvcc on key end-to-end internal benchmarks and is on par with nvcc on a variety of open-source benchmarks.
Exception handling in LLVM, from Itanium to MSVC
Reid Kleckner - Google
David Majnemer - Google
Slides
Video
This talk covers the design and implementation of MSVC-compatible exception handling in Clang and LLVM. Unlike the Itanium C++ exception handling model, the Windows exception handling model is not designed around successive unwinding. As a result, the existing LLVM landingpad instruction is insufficient for expressing how Windows exceptions should be handled. To support Windows exceptions, we added the new token type and a family of new EH pad instructions to LLVM. This talk describes the final design of the new representation and the tradeoffs we made along the way.
OpenMP GPU/Accelerator support Coming of Age in Clang
Michael Wong - IBM
Alexey Bataev - Intel
Slides
Video
GPU/Accelerator computing will be the basis for the future of Exacale computing through the DOE's CORAL project. It is also the basis for future features for C++ Std's SG14's Games Development/Low Latency/Real Time/Graphics Study Group. However, llvm currently lacks a unified platform-neutral infrastructure for offloading to GPUs/Accelerators, which severely limits clang/llvm usage in these hugely important application domains.
For the past several years, a number of contributors from AMD, Argonne National Lab., IBM, Intel, Texas Instruments, University of Houston and many others have come together to deliver OpenMP support to clang. OpenMP 3.1 is now officially in clang 3.7 and work continues to completion of OpenMP 4 aiming for clang 3.8. One of the most important features of OpenMP 4 standard is a vendor- and platform-neutral support for Accelerators.
The main presenters will be the OpenMP CEO and Chair of ISO C++'s SG5/SG14 along with the main developer who has been delivering OpenMP implementation in clang (with the help of many others). This talk will describe how GPU and Accelerators will be supported in clang. It offers an overview of the OpenMP 4 syntax, and a description of the upstreaming progress in both clang and llvm through this continued collaboration, as well as the offloading interface design that will describe target independent support across many hardware targets including Nvidia, Xeon Phi, ARM, and AMD devices.
An update on Clang-based C++ Tooling
Daniel Jasper - Google
Manuel Klimek - Googl
Slides
Video
This talk is going to give an update of the C++ tooling we are building on top of clang. Among others, it will focus on clang-tidy, a tool to statically analyze source code to diagnose and fix typical programming errors like style violations, interface misuse, or bugs. We'll give an update on the direction this project is taking, new checks that are being integrated and challenges we are facing.
In a live demo, we'll show how we can fix specific problems throughout LLVM's own codebase. We'll also show how a new check can be added in a matter of minutes and how other Clang-based tools can help with its development.
LLVM for a managed language: what we've learned
Sanjoy Das - Azul Systems
Philip Reames - Azul Systems
Slides
Video
For a little over a year we have been working towards a production quality, state of the art LLVM based JIT compiler for Java. This talk focuses on what we've learned about LLVM's strengths and weaknesses as an optimization framework for Java-like languages. We will discuss interesting challenges in efficiently implementing Java's semantics within LLVM IR, and how we've been growing LLVM towards being a more effective compiler for managed languages.
Throttling Automatic Vectorization: When Less Is More
Vasileios Porpodas - University of Cambridge
Slides
Video
SIMD vectors are widely adopted in modern general purpose processors as they can boost performance and energy efficiency for certain applications.
Compiler-based automatic vectorization is one approach for generating code that makes efficient use of the SIMD units, and has the benefit of avoiding hand development and platform-specific optimizations.
The Superword-Level Parallelism (SLP) vectorization algorithm is the most well-known implementation of automatic vectorization when starting from straight-line scalar code, and is implemented in several major compilers.
The existing SLP algorithm greedily packs scalar instructions into vectors starting from stores and traversing the data dependence graph upwards until it reaches loads or non-vectorizable instructions.
Choosing whether to vectorize is a one-off decision for the whole graph that has been generated.
This, however, is suboptimal because the graph may contain code that is harmful to vectorization due to the need to move data from scalar registers into vectors.
The decision does not consider the potential benefits of throttling the graph by removing this harmful code.
In this work we propose a solution to overcome this limitation by introducing Throttled SLP (TSLP), a novel vectorization algorithm that finds the optimal graph to vectorize, forcing vectorization to stop earlier whenever this is beneficial.
Our experiments show that TSLP improves performance across a number of kernels extracted from widely-used benchmark suites, decreasing execution time compared to SLP by 9% on average and up to 14% in the best case.
LLVM back end for HHVM/PHP
Brett Simmers - Facebook, Inc.
Maksim Panchenko - Facebook, Inc.
Slides
Video
The Hip-Hop Virtual Machine (HHVM) is a JIT compiler for executing PHP programs. It is used by some of the world’s largest websites such as facebook.com and wikipedia.org, among many others. At Facebook we have frequently been asked why we don't use LLVM as a back end for HHVM. Inspired by the success of Apple’s FTL we implemented an alternative back end using LLVM.
In this talk we will share what it took to hook LLVM in to HHVM from conception to running limited production traffic. We will cover changes to our internal IR and modifications we had to make to LLVM. We will discuss performance challenges we faced, peculiar bugs, and finally will discuss why we are not yet at the point of enabling the LLVM back end for production Facebook traffic.
LoopVersioning LICM
Ashutosh Nema - AMD
Slides
Video
Loop invariant code motion is an important compiler optimization and it moves invariant instructions out of a loop without affecting the semantics of a program.
For safety it ensures the alias dependencies before moving invariant out of loop.
In some cases memory aliasing may make this optimization ineffective. This results in possible missed opportunities in speeding up applications.
LoopVersioning LICM is a step to exploit those missed opportunities where memory aliasing may make LICM optimization ineffective.
Compiling large, real-world codebases with clang on Windows
Hans Wennborg - Google Inc.
Nico Weber - Google Inc.
Slides
Video
llvm 3.7 is the first release that can build large projects such as Chromium on Windows without having to fall back to Visual Studio's compiler for a single translation unit. This talk gives an overview of the work done to get to this state: It covers language extensions clang needed to learn to parse Microsoft's headers and dark corners of the Microsoft ABI, with a focus on work done in the last year. Much of the Windows support was developed in tight collaboration between the Chromium and LLVM projects. The talk also touches on how this collaboration works and why it’s successful. Finally, the talk also gives an overview of how to get projects building with clang that build with Visual Studio.
Debug Info: From Metadata to Modules
Duncan Exon Smith - Apple
Adrian Prantl - Apple
Slides
Video
The efficiency of debug info in LLVM and Clang improved dramatically this year. This talk is about what it took to get here and what work remains.
We'll talk about how Metadata was redesigned to make the debug info IR memory-efficient (with a human-readable assembly syntax). We'll go into the implications for other Metadata graphs, and what a more expressive Metadata future could look like. We'll also include an overview of what's left to scale debug info for LTO.
We'll also talk about Clang's new module debugging feature, which reduces the size of debug info on disk, improves compile time, and makes full type information available to debuggers. We'll highlight how Clang-based debuggers like LLDB can use module debug information to enhance expression evaluation.
Advances in Loop Analysis Frameworks and Optimizations
Adam Nemet - Apple Inc.
Michael Zolotukhin - Apple Inc.
Slides
Video
The talk will survey recent advances in loop analysis frameworks to support optimizations like unrolling, distribution, loop-aware load-elimination and multi-versioning. A significant part of our contribution was to rethink and re-design existing analysis frameworks to make them both more powerful and more widely accessible. The major part of this talk will focus on introducing these analysis frameworks and how they are used by optimizations. We will also discuss how they integrate with other analysis passes and outline ideas for their future evolution.
Tutorial Abstracts
Tutorial: Building, Testing and Debugging a Simple out-of-tree LLVM Pass
Serge Guelton - Quarkslab
Adrien Guinet - Quarkslab
Slides
Video
This tutorial aims at providing solid ground to develop out-of-tree LLVM passes. It presents all the required building blocks, starting from scratch: cmake integration, llvm pass management, opt / clang integration. It presents the core IR concepts through two simple obfuscating passes: the SSA form, the CFG, PHI nodes, IRBuilder etc. We also take a quick tour on analysis integration through dominators. Finally, it showcases how to use cl and lit to parametrize and test the toy passes developed in the tutorial.
Tutorial: Creating an SPMD Vectorizer for OpenCL with LLVM
Pierre-Andre Saulais - Codeplay Software
Slides
Video
Processors such as CPUs or DSPs often feature SIMD instructions, but are not designed to efficiently support Single Program Multiple Data (SPMD) execution models such as OpenCL. The design of a compiler for such a target therefore needs some form of vectorization to generate the most optimal code for this kind of data-parallel execution model. This is because SPMD programs are most often written in scalar form with the implicit assumption that many instances of the program are executed in parallel. On CPU-like architectures, SIMD vector units can be leveraged for parallelism, such that each SIMD lane is loosely mapped to a program instance.
This tutorial looks at how to create an SPMD vectorizer that targets CPU-like architectures for use with heterogeneous compute frameworks. OpenCL is used as an example but the concepts should translate to other frameworks such as CUDA, RenderScript or Vulkan Compute. While there are other possible approaches, we have chosen to present one that works at the LLVM IR level and that is essentially an IR pass that creates vectorized functions from the original scalar SPMD function. This allows targetting multiple architectures with very little architecture-specific code.
We will start by briefly introducing the SPMD execution model, describing how it is used in OpenCL and giving an overview of what a SPMD vectorizer should do and how it differs from other kinds such as LLVM's loop vectorizer and SLP vectorizer. Then we will look at a possible vectorizer design, including the different vectorization stages (analysis, control-flow to data-flow, scalarization, packetization/instantiation and optimization/cleanup). Finally, we will look at some possible optimizations as well as other aspects that do not fit the 'stage-by-stage' presentation (e.g. vectorizing and scalarizing calls to builtin functions, SIMD width detection, interleaved memory access optimizations, SoA to AoS conversions, etc).
Tutorial: Polly - Optimistic Loop Nest Optimizations with Schedule Trees
Tobias Grosser - ETH Zurich
Johannes Doerfert - Saarland University
Slides
Video
Polly is an advanced LLVM loop nest optimizer that provides precise
memory access analyses and implements on top of them advanced loop optimizations based on a memory-access focused program model.
In the first part of this tutorial we introduce the audience to integer set based schedule trees as a way to model loop programs. We explain how we statically model program behavior on the granularity of individual dynamic computations and discuss different program
analyses (memory accesses, data-dependences, computational complexity).
We then learn how to perform complex loop transformations using simple per-node operations on an abstract program schedule tree. Such transformations include most classical loop transformations, but also full/partial tile separation, outer-loop vectorization and other more complex transformations. At the end of the first part of this tutorial,
the audience understands the general concepts used in Polly.
The second part of this tutorial is focused on Polly's new optimistic optimization infrastructure that enables non-statically provable transformations to be performed optimistically. Discussing optimization blocking issues such as exception handling code, infinite loops, integer wrapping or out-of-bound memory accesses we introduce the concept of optimistic assumptions. We then discuss how such assumptions can be described in general, how Polly can collect assumptions, how redundant assumptions are eliminated and how a (close to) minimal run-time check to verifying them are generated. At the end of the second
part of this tutorial the audience will be able to create optimistic loop optimizations even for cases that lack sufficient static information.
Tutorial/BoF: Living Downstream Without Drowning
Paul Robinson - Sony Computer Entertainment
Michael Edwards - Sony Computer Entertainment
Slides
Video
Have you made changes to your copy of an llvm.org project? Not
planning to contribute them back to the open-source project right away?
Then you are LIVING DOWNSTREAM.
Have you noticed that there are actually quite a lot of changes made
to the upstream projects? Clang + LLVM together see an average of 50
commits every day. This is a FLOOD.
Are you seeing lots of conflicts or test failures when you merge
from upstream? Spending too much time patching things back together
before you can make any progress on your project? Then you are DROWNING!
On a project with lots of local changes, managing the flood can be
a half-time job all by itself. It's not _exactly_ unproductive time, but
it's time you do not spend on your unique project and customizations.
At Sony Computer Entertainment, we were drowning... but we've learned
to swim with the current, and we are building a lifeboat.
In this combined tech-talk/BOF session, Paul and Mike will talk
about SCE's practices and plans for reducing our merge overhead, including
source-patch practices and merge/build/test automation.
Then, it becomes a BOF where everyone can share their ideas,
suggestions and practices for Living Downstream Without Drowning!
Lightning Talk Abstracts
BoF Abstracts
Poster Abstracts
Reception
The reception will be held on Thursday, October 29 from 6PM-10PM at SP2 Communal Bar & Restaurant
A reception ticket is required to attend this event. Drinks and food will be provided.
SP2 Communal Bar & Restaurant
72 N Almaden Ave.
San Jose, CA 95110
Hotel
San Jose Marriott
301 South Market Street
San Jose, CA 95113
We have negotiated a room block for our attendees:
LLVM Foundation Developers Meeting
Start date: 10/28/15
End date: 10/31/15
Last day to book: 10/7/15
Marriott hotel(s) offering your special group rate:
San Jose Marriott for 229.00 USD per night
Book your group rate for LLVM Foundation Developers Meeting
Parking
You can find parking at the San Jose Marriott (valet only) and the San Jose Convention Center.
Rates:
San Jose Marriott Valet parking:
- First 30 Minutes $8
- Up to 1 hour $14
- 1 to 2 hours $20
- 2 to 4 hours $26
- 4-5 hours $32
- 5-24 hours $34
San Jose Convention Center Parking: $1 per 20 min, $20 daily maximum Monday - Sunday, special rates as posted at facility may apply during special event (http://www.sanjose.org/maps-more/parking/).
|