Nguyen Damien
Nguyen Damien
Replacing calls to ivy-set-display-transformer with ivy-configure
MRE: ```cmake cmake_minimum_required(VERSION 3.0) project(test LANGUAGES CXX) if(DEFINED ENV{CMAKE_CXX_COMPILER_LAUNCHER}) message(STATUS "Hello World!") endif() ``` Expected: No warnings Actual: ``` /tmp/CMakeLists.txt =================== /tmp/CMakeLists.txt:04,11: [W0106] String looks like a variable reference missing...
MRE: ```cmake cmake_minimum_required(VERSION 3.0) set(VAR "-f -a") separate_arguments(VAR) ``` Expected: No warnings Actual: ``` /tmp/CMakeLists.txt =================== /tmp/CMakeLists.txt:05,19: [E1120] Missing required positional argument Summary ======= files scanned: 1 found lint: Error:...
OpenQASM support ============== This is a first attempt at implementing conversion to and from OpenQASM. U2 and U3 gates ----------------- Introduced `U2` and `U3` gates with identical definitions as the...
This supersedes #324. This implementation of a mapper for arbitrary graphs relies on storing the gates in a directed acyclic graph and then generating the swap operations in order to...
- Fix missing variable expansion in pybind11Config.cmake - Properly search for Python interpreter
Condition below always evaluates to `True` because if no CMake command is found, the return value is `[None]` and not `None`. https://github.com/Takishima/cmake-pre-commit-hooks/blob/55ef73ef283053b50846c7f19ad80ef927017329/cmake_pc_hooks/_cmake.py#L70
# Issue When copying libraries to the `nix-gl-host` cache, the current code uses `shutil.copyfile()` which follows symlinks and copies the actual file content. This breaks in some situations where code...