Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.7%) to scientific vocabulary
Last synced: 7 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: ramjana
  • License: other
  • Language: C++
  • Default Branch: main
  • Size: 11.9 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 1
  • Releases: 0
Created about 2 years ago · Last pushed almost 2 years ago
Metadata Files
Readme Changelog License Citation Codeowners Support

README.md

Composable Kernel

The Composable Kernel (CK) library provides a programming model for writing performance-critical kernels for machine learning workloads across multiple architectures (GPUs, CPUs, etc.). The CK library uses general purpose kernel languages, such as HIP C++.

CK uses two concepts to achieve performance portability and code maintainability:

  • A tile-based programming model
  • Algorithm complexity reduction for complex machine learning (ML) operators. This uses an innovative technique called Tensor Coordinate Transformation.

ALT

The current CK library is structured into four layers:

  • Templated Tile Operators
  • Templated Kernel and Invoker
  • Instantiated Kernel and Invoker
  • Client API

ALT

General information

To build our documentation locally, use the following code:

bash cd docs pip3 install -r sphinx/requirements.txt python3 -m sphinx -T -E -b html -d _build/doctrees -D language=en . _build/html

You can find a list of our developers and contributors on our Contributors page.

```note If you use CK, cite us as follows:

CK is released under the MIT license.

Building CK

We recommend building CK inside Docker containers, which include all necessary packages. Pre-built Docker images are available on DockerHub.

  1. To build a new Docker image, use the Dockerfile provided with the source code:

    bash DOCKER_BUILDKIT=1 docker build -t ck:latest -f Dockerfile .

  2. Launch the Docker container:

    bash docker run \ -it \ --privileged \ --group-add sudo \ -w /root/workspace \ -v ${PATH_TO_LOCAL_WORKSPACE}:/root/workspace \ ck:latest \ /bin/bash

  3. Clone CK source code from the GitHub repository and start the build:

    bash git clone https://github.com/ROCm/composable_kernel.git && \ cd composable_kernel && \ mkdir build && \ cd build

    You must set the GPU_TARGETS macro to specify the GPU target architecture(s) you want to run CK on. You can specify single or multiple architectures. If you specify multiple architectures, use a semicolon between each; for example, gfx908;gfx90a;gfx940.

    bash cmake \ -D CMAKE_PREFIX_PATH=/opt/rocm \ -D CMAKE_CXX_COMPILER=/opt/rocm/bin/hipcc \ -D CMAKE_BUILD_TYPE=Release \ -D GPU_TARGETS="gfx908;gfx90a" \ ..

    If you don't set GPU_TARGETS on the cmake command line, CK is built for all GPU targets supported by the current compiler (this may take a long time).

  4. Build the entire CK library:

    bash make -j

  5. Install CK:

    bash make -j install

Optional post-install steps

  • Build examples and tests:

    bash make -j examples tests

  • Build and run all examples and tests:

    bash make -j check

    You can find instructions for running each individual example in example.

  • Build ckProfiler:

    bash make -j ckProfiler

    You can find instructions for running ckProfiler in profiler.

Note the -j option for building with multiple threads in parallel. This speeds up the build significantly. Depending on the number of CPU cores and the amount of RAM on your system, you may want to limit the number of threads. For example, if you have a 128-core CPU and 64 Gb of RAM.

By default, -j launches one thread per CPU core, which can cause the build to run out of memory and crash. In such cases, you can reduce the number of threads to 32 by using -j32.

Additional cmake flags can be used to significantly speed-up the build:

  • INSTANCES_ONLY (default is OFF) must be set to ON in order to build only the instances and library while skipping all tests, examples, and profiler. This is useful in cases when you plan to use CK as a dependency and don't plan to run any examples or tests.

  • DTYPES (default is not set) can be set to any subset of "fp64;fp32;fp16;fp8;bf16;int8" to build instances of select data types only. The main default data types are fp32 and fp16; you can safely skip other data types.

  • DL_KERNELS (default is OFF) must be set to ON in order to build instances, such as gemm_dl or batched_gemm_multi_d_dl. These instances are useful on architectures like the NAVI2x, as most other platforms have faster instances, such as xdl or wmma, available.

Using sccache for building

The default CK Docker images come with a pre-installed version of sccache, which supports clang being used as hip-compiler (" -x hip"). Using sccache can help reduce the time to re-build code from hours to 1-2 minutes. In order to invoke sccache, you need to run:

bash sccache --start-server

then add the following flags to the cmake command line:

bash -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache

You may need to clean up the build folder and repeat the cmake and make steps in order to take advantage of the sccache during subsequent builds.

Using CK as pre-built kernel library

You can find instructions for using CK as a pre-built kernel library in client_example.

Contributing to CK

When you contribute to CK, make sure you run clang-format on all changed files. We highly recommend using git hooks that are managed by the pre-commit framework. To install hooks, run:

bash sudo script/install_precommit.sh

With this approach, pre-commit adds the appropriate hooks to your local repository and automatically runs clang-format (and possibly additional checks) before any commit is created.

If you need to uninstall hooks from the repository, you can do so by running the following command:

bash script/uninstall_precommit.sh

If you need to temporarily disable pre-commit hooks, you can add the --no-verify option to the git commit command.

Owner

  • Name: Raman R jana
  • Login: ramjana
  • Kind: user
  • Location: Austin,TX
  • Company: AMD,inc

ML/HPC Math Libraries

Citation (CITATION.cff)

cff-version: 1.2.0
title: Composable Kernel
message: If you use this software, please cite using the following metadata.
type: software
authors:
  - given-names: Chao
    family-names: Liu
    email: chao.liu2@amd.com
    affiliation: AMD
  - given-names: Jing
    family-names: Zhang
    email: jing.zhang3@amd.com
    affiliation: AMD
  - given-names: Letao
    family-names: Qin
    email: letao.qin@amd.com
    affiliation: AMD
  - given-names: Qianfeng
    family-names: Zhang
    email: qianfeng.zhang@amd.com
    affiliation: AMD
  - given-names: Liang
    family-names: Huang
    email: carlus.huang@amd.com
    affiliation: AMD
  - given-names: Shaojie
    family-names: Wang
    email: shaojie.wang@amd.com
    affiliation: AMD
  - given-names: Anthony
    family-names: Chang
    email: antc@amd.com
    affiliation: AMD
  - given-names: Chunyu
    family-names: Lai
    email: chunyu.lai@amd.com
    affiliation: AMD
  - given-names: Illia
    family-names: Silin
    email: illia.silin@amd.com
    affiliation: AMD
  - given-names: Adam
    family-names: Osewski
    email: adam.osewski@amd.com
    affiliation: AMD
  - given-names: Poyen
    family-names: Chen
    email: poyen.chen@amd.com
    affiliation: AMD
  - given-names: Rosty
    family-names: Geyyer
    email: rosty.geyyer@amd.com
    affiliation: AMD
  - given-names: Hanwen
    family-names: Chen
  - given-names: Tejash
    family-names: Shah
  - given-names: Xiaoyan
    family-names: Zhou
  - given-names: Jianfeng
    family-names: Yan
repository-code: 'https://github.com/ROCm/composable_kernel'
abstract: Composable Kernel (CK) library aims to provide a programming model for writing performance critical kernels for Machine Learning workloads across multiple architectures including GPUs, CPUs, etc, through general purpose kernel progarmming languages, like HIP C++.
keywords:
  - 'CK, Composable Kernel, Tensor Coordinate Transformation'
license: MIT
license-url: https://github.com/ROCm/composable_kernel/blob/7fc3ed761aa35709d87c8fbbe41dd368648b3541/LICENSE

GitHub Events

Total
Last Year

Dependencies

Dockerfile docker
  • ubuntu 20.04 build
dev-requirements.txt pypi
  • ROCm * development
  • RadeonOpenCompute * development
  • danmar * development
docs/sphinx/requirements.in pypi
  • rocm-docs-core ==0.33.0
  • sphinxcontrib-bibtex ==2.6.2
docs/sphinx/requirements.txt pypi
  • accessible-pygments ==0.0.3
  • alabaster ==0.7.13
  • babel ==2.12.1
  • beautifulsoup4 ==4.11.2
  • breathe ==4.34.0
  • certifi ==2023.7.22
  • cffi ==1.15.1
  • charset-normalizer ==3.1.0
  • click ==8.1.3
  • cryptography ==41.0.6
  • deprecated ==1.2.13
  • docutils ==0.16
  • fastjsonschema ==2.18.0
  • gitdb ==4.0.10
  • gitpython ==3.1.37
  • idna ==3.4
  • imagesize ==1.4.1
  • importlib-metadata ==6.8.0
  • importlib-resources ==6.1.0
  • jinja2 ==3.1.2
  • latexcodec ==2.0.1
  • markdown-it-py ==2.2.0
  • markupsafe ==2.1.2
  • mdit-py-plugins ==0.3.5
  • mdurl ==0.1.2
  • myst-parser ==1.0.0
  • packaging ==23.0
  • pybtex ==0.24.0
  • pybtex-docutils ==1.0.2
  • pycparser ==2.21
  • pydata-sphinx-theme ==0.13.3
  • pygithub ==1.58.1
  • pygments ==2.15.0
  • pyjwt ==2.6.0
  • pynacl ==1.5.0
  • pytz ==2023.3.post1
  • pyyaml ==6.0
  • requests ==2.31.0
  • rocm-docs-core ==0.33.0
  • six ==1.16.0
  • smmap ==5.0.0
  • snowballstemmer ==2.2.0
  • soupsieve ==2.4
  • sphinx ==5.3.0
  • sphinx-book-theme ==1.0.1
  • sphinx-copybutton ==0.5.1
  • sphinx-design ==0.4.1
  • sphinx-external-toc ==0.3.1
  • sphinx-notfound-page ==0.8.3
  • sphinxcontrib-applehelp ==1.0.4
  • sphinxcontrib-bibtex ==2.6.2
  • sphinxcontrib-devhelp ==1.0.2
  • sphinxcontrib-htmlhelp ==2.0.1
  • sphinxcontrib-jsmath ==1.0.1
  • sphinxcontrib-qthelp ==1.0.3
  • sphinxcontrib-serializinghtml ==1.1.5
  • typing-extensions ==4.5.0
  • urllib3 ==1.26.18
  • wrapt ==1.15.0
  • zipp ==3.17.0
requirements.txt pypi