ruy/cci.20231129

ruy is a matrix multiplication library. Its focus is to cover the matrix multiplication needs of neural network inference engines
Recipe info
2023-12-14

Available packages
Linux
Windows
macOS
macOS Apple Silicon

Install
Add the following line to your conanfile.txt:
[requires]
ruy/cci.20231129

Using ruy

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
ruy/cci.20231129
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("ruy/cci.20231129")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): ruy
  • CMake target name(s): ruy::ruy
  • pkg-config file name(s): ruy.pc

A simple use case using the CMake file name and the global target:

# ...
find_package(ruy REQUIRED)
# ...
target_link_libraries(YOUR_TARGET ruy::ruy)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the ruy homepage listed above:

#include "ruy/allocator.h"
#include "ruy/apply_multiplier.h"
#include "ruy/asm_helpers.h"
#include "ruy/block_map.h"
#include "ruy/blocking_counter.h"
#include "ruy/check_macros.h"
#include "ruy/context.h"
#include "ruy/context_get_ctx.h"
#include "ruy/cpu_cache_params.h"
#include "ruy/cpuinfo.h"
#include "ruy/create_trmul_params.h"
#include "ruy/ctx.h"
#include "ruy/ctx_impl.h"
#include "ruy/denormal.h"
#include "ruy/frontend.h"
#include "ruy/have_built_path_for.h"
#include "ruy/kernel.h"
#include "ruy/kernel_arm.h"
#include "ruy/kernel_common.h"
#include "ruy/kernel_x86.h"
#include "ruy/mat.h"
#include "ruy/matrix.h"
#include "ruy/mul_params.h"
#include "ruy/opt_set.h"
#include "ruy/pack.h"
#include "ruy/pack_arm.h"
#include "ruy/pack_common.h"
#include "ruy/pack_x86.h"
#include "ruy/path.h"
#include "ruy/performance_advisory.h"
#include "ruy/platform.h"
#include "ruy/prepacked_cache.h"
#include "ruy/prepare_packed_matrices.h"
#include "ruy/profiler/instrumentation.h"
#include "ruy/profiler/profiler.h"
#include "ruy/profiler/treeview.h"
#include "ruy/reference_mul.h"
#include "ruy/ruy.h"
#include "ruy/side_pair.h"
#include "ruy/size_util.h"
#include "ruy/system_aligned_alloc.h"
#include "ruy/thread_pool.h"
#include "ruy/time.h"
#include "ruy/trace.h"
#include "ruy/trmul.h"
#include "ruy/trmul_params.h"
#include "ruy/tune.h"
#include "ruy/validate.h"
#include "ruy/wait.h"