LLVM
The LLVM compiler infrastructure project is a set of compiler and toolchain technologies, which can be used to develop a front end for any programming language and a back end for any instruction set architecture.
Here are 1,259 public repositories matching this topic...
-
Updated
Sep 2, 2020 - LLVM
Whilst chasing other issues, I noticed that the caching in InetAddress.scala
is well intended
but questionable:
def getHostName(): String = {
if (host == null) {
val ipString = createIPStringFromByteArray(ipAddress)
host = SocketHelpers
.ipToHost(ipString, isValidIPv6Address(ipString))
.getOrElse {
ipString
}
}
host
}
-
Updated
Jun 11, 2021 - C
-
Updated
Mar 1, 2021 - Rust
Hey everyone!
mapd-core-cpu is already available on conda-forge (https://anaconda.org/conda-forge/omniscidb-cpu)
now we should add some instructions on the documentation.
at this moment it is available for linux and osx.
some additional information about the configuration:
- for now, always install
omniscidb-cpu
inside a conda environment (also it is a good practice), eg:
Scenario:
I have a project, with build tools of cmake, when I try to run it with cling. It prompts some headers are not included.
So I was wondering if there is a way to make use of the cmake script to load the build environment into cling and run directly?
Appreciate the great work!
While the test_suite presented in #589 does work, it is still pretty simple and can be improved and enhanced.
- Add tests for gnutils and coreutils.
- Add necessary utilities so more complex programs can be compiled from sources.
- Integrate CMake, so one could write something like
make validate
and the subset of test that is deemed necessary (for example everything withmin
t
-
Updated
May 20, 2021 - C++
-
Updated
Jun 19, 2021 - C++
Revisit CLI syntax
Currently, the architecture of the CLI is based on (sub)commands and options. Commands are expected to be provided as the first argument, and do effectively decide which feature is to be used. OTOH, options provide parameters to the commands. However, there is no syntactical difference, as both commands and options start with --
or -i
. As a result, we rely on properly formating --help
and on
The CodeChecker cmd
subcommand communicates with the server via Thrift, and on a Jenkins docker image, I have tried to use it to get run information from a local CodeChecker server. The output of the CodeChecker cmd runs
command was just the help message. I have found out that using a proxy is not supported right now, and the issue was solved by disabling proxy via unsetting the environmental
-
Updated
Jul 21, 2020 - C++
-
Updated
Jun 13, 2021 - C++
std.math
was split into a package with v2.097. This might imply that some little helpers (isNaN
etc.) aren't inlined any longer without LTO (incl. Phobos), thus reducing performance of some math functions.
-
Updated
May 28, 2021 - Haskell
-
Updated
Jun 17, 2021 - C++
-
Updated
Jun 14, 2021 - C++
Created by Vikram Adve, Chris Lattner
Released 2019
Latest release 2 months ago
- Repository
- llvm/llvm-project
- Wikipedia
- Wikipedia
In numba/stencils/stencil.py, there are various places (like line 552, "if isinstance(kernel_size[i][0], int):") where we check for "int" in relation to neighborhoods. I ran across a case where I was creating a neighborhood tuple by extracting values from a Numpy array. This causes a problem because those Numpy values will not match in these isinstance int checks. I worked around it by conver