- acado
- acado/code_generation/export_nlp_solver.cpp
- acado/code_generation/integrators/discrete_export.cpp
- acado/code_generation/integrators/erk_3sweep_export.cpp
- acado/code_generation/integrators/erk_adjoint_export.cpp
- acado/code_generation/integrators/erk_export.cpp
- acado/code_generation/integrators/irk_export.cpp
- acado/code_generation/integrators/irk_forward_export.cpp
- acado/code_generation/integrators/irk_lifted_forward_export.cpp
- acado/code_generation/integrators/lifted_erk_export.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# License: public domain / CC0-1.0 | |
import os | |
import shutil | |
from conan.api.output import ConanOutput | |
from conan.errors import ConanException | |
from conans.util.files import rmdir, mkdir | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import fnmatch | |
import platform | |
import sys | |
from pathlib import Path | |
from pprint import pprint | |
from elftools.elf.dynamic import DynamicSection | |
from elftools.elf.elffile import ELFFile | |
from macholib.MachO import MachO |
- amgcl
- amgcl/adapter/block_matrix.hpp
- amgcl/adapter/reorder.hpp
- amgcl/adapter/scaled_problem.hpp
- amgcl/backend/block_crs.hpp
- amgcl/backend/builtin.hpp
- amgcl/backend/detail/matrix_ops.hpp
- amgcl/coarsening/plain_aggregates.hpp
- amgcl/coarsening/pointwise_aggregates.hpp
- amgcl/coarsening/ruge_stuben.hpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class VtkConan(ConanFile): | |
def generate(self): | |
deps = CMakeDeps(self) | |
deps.generate() | |
# Store a mapping from CMake to Conan targets for later use in package_info() | |
targets_map = self._get_cmake_to_conan_targets_map(deps) | |
save(self, self._cmake_targets_map_json, json.dumps(targets_map, indent=2)) | |
@property |
- GKlib-METIS-v5.1.1-DistDGL-0.5.tar.gz
- GKlibSystem.cmake
- GraphBLAS-9.2.0.tar.gz
- CMakeLists.txt
- GraphBLAS/CMakeLists.txt
- LightGBM-4.3.0.tar.gz
- CMakeLists.txt
- METIS-5.2.1.tar.gz
- conf/gkbuild.cmake
- OpenBLAS-0.3.27.tar.gz
- CCTag-1.0.3.tar.gz
- CCTag-1.0.3/src/cctag/cuda/assist.cu
- CCTag-1.0.3/src/cctag/cuda/cctag_cuda_runtime.h
- CCTag-1.0.3/src/cctag/cuda/cmp_list.cu
- CCTag-1.0.3/src/cctag/cuda/debug_image.cu
- CCTag-1.0.3/src/cctag/cuda/debug_is_on_edge.cu
- CCTag-1.0.3/src/cctag/cuda/frame.cu
- CCTag-1.0.3/src/cctag/cuda/frame_01_tex.cu
- CCTag-1.0.3/src/cctag/cuda/frame_02_gaussian.cu
- CCTag-1.0.3/src/cctag/cuda/frame_03_magmap.cu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -o errexit -o nounset -o pipefail | |
if [ -f conandata.yml ]; then | |
dir=. | |
elif [ -f ../conandata.yml ]; then | |
dir=.. | |
elif [ -f ../../conandata.yml ]; then | |
dir=../.. | |
elif [ -f meson/conandata.yml ]; then |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CMAKE generated file: DO NOT EDIT! | |
# Generated by "Ninja" Generator, CMake Version 3.30 | |
# This file contains all the build statements describing the | |
# compilation DAG. | |
# ============================================================================= | |
# Write statements declared in CMakeLists.txt: | |
# | |
# Which is the root file. |