Explore >> Select a destination


You are here

blog.bazel.build
| | www.jeremykun.com
15.9 parsecs away

Travel
| | Back in May of 2022 I transferred teams at Google to work on Fully Homomorphic Encryption (newsletter announcement). Since then I've been working on a variety of projects in the space, including being the primary maintainer on github.com/google/fully-homomorphic-encryption, which is an open source FHE compiler for C++. This article will be an introduction to how to use it to compile programs to FHE, as well as a quick overview of its internals.
| | www.eliza-ng.me
12.9 parsecs away

Travel
| | Title: Potential Implications of Removing the Global Interpreter Lock (GIL) in Python Introduction: The Global Interpreter Lock (GIL) has long been a topic of discussion among Python developers. While the GIL ensures the thread safety of Python code, it also limits the language's ability to fully leverage parallelism, causing performance bottlenecks. Recently, there have been calls to remove the GIL, sparking a debate about the potential implications for existing Python code and its accompanying C extensions.
| | bazel.build
7.0 parsecs away

Travel
| |
| | akrzemi1.wordpress.com
59.3 parsecs away

Travel
| The language feature in C++17 known as class template argument deduction was intended to supersede factory functions like make_pair, make_tuple, make_optional, as described in p0091r2. This goal has not been fully achieved and we may still need to stick to make_ functions. In this post we will briefly describe what class template argument deduction is,...