-
Notifications
You must be signed in to change notification settings - Fork 0
Add xe-fuse: GEMM epilogue fusion framework for Intel Xe GPUs #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| build/ | ||
| install/ | ||
| __pycache__/ | ||
| *.pyc | ||
| .venv/ | ||
| fulsim_logs_*/ | ||
| autotune/*.out | ||
| tests/*.out | ||
| *.out | ||
| # generated sweep data / plots / reference papers | ||
| autotune/*.csv | ||
| autotune/*.xlsx | ||
| tests/*.csv | ||
| tests/*.pdf | ||
| tests/*.png | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| cmake_minimum_required(VERSION 3.22 FATAL_ERROR) | ||
|
|
||
| # Re-entry guard for add_subdirectory / FetchContent nesting | ||
| if(xe_fuse_LOADED) | ||
| return() | ||
| endif() | ||
| set(xe_fuse_LOADED ON) | ||
|
|
||
| project(XeFuse | ||
| VERSION 0.1.0 | ||
| DESCRIPTION "Fused GEMM+epilogue kernels for Intel Xe (Battlemage/BMG)" | ||
| LANGUAGES CXX) | ||
|
|
||
| # ── Options ──────────────────────────────────────────────────────────────────── | ||
| option(XE_FUSE_BUILD_TESTS "Build xe-fuse tests" ${PROJECT_IS_TOP_LEVEL}) | ||
| option(XE_FUSE_BUILD_EXAMPLES "Build xe-fuse examples" ${PROJECT_IS_TOP_LEVEL}) | ||
|
|
||
| set(SYCL_TLA_DIR "" CACHE PATH | ||
| "Path to an existing sycl-tla checkout. Leave empty to auto-fetch via FetchContent.") | ||
| set(SYCL_TLA_GIT_TAG "main" CACHE STRING | ||
| "sycl-tla git tag/branch/SHA to fetch when SYCL_TLA_DIR is empty.") | ||
| set(DPCPP_SYCL_TARGET "intel_gpu_bmg_g31" CACHE STRING | ||
| "Comma-separated SYCL device target(s): intel_gpu_bmg_g31, intel_gpu_bmg_g21, intel_gpu_pvc, spir64, ...") | ||
|
|
||
| # ── C++ standard ────────────────────────────────────────────────────────────── | ||
| set(CMAKE_CXX_STANDARD 17 CACHE STRING "" FORCE) | ||
| set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
| set(CMAKE_CXX_EXTENSIONS OFF) | ||
|
|
||
| if(NOT CMAKE_CXX_COMPILER_ID MATCHES "IntelLLVM") | ||
| message(WARNING | ||
| "xe-fuse targets icpx (Intel oneAPI DPC++). " | ||
| "Pass -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-intel-xe.cmake or set " | ||
| "CMAKE_CXX_COMPILER=icpx. Other compilers are unsupported.") | ||
| endif() | ||
|
|
||
| # ── sycl-tla cmake options (must be set BEFORE sycl-tla's CMakeLists runs) ──── | ||
| set(CUTLASS_ENABLE_SYCL ON CACHE BOOL "" FORCE) | ||
| set(CUTLASS_ENABLE_TOOLS ON CACHE BOOL "" FORCE) # needed for cutlass_tools_util_includes | ||
| set(CUTLASS_ENABLE_HEADERS_ONLY OFF CACHE BOOL "" FORCE) | ||
| set(CUTLASS_ENABLE_EXAMPLES OFF CACHE BOOL "" FORCE) | ||
| set(CUTLASS_ENABLE_TESTS OFF CACHE BOOL "" FORCE) | ||
| set(CUTLASS_ENABLE_LIBRARY OFF CACHE BOOL "" FORCE) | ||
| set(CUTLASS_ENABLE_BENCHMARKS OFF CACHE BOOL "" FORCE) | ||
| set(CUTLASS_ENABLE_PROFILER OFF CACHE BOOL "" FORCE) | ||
|
|
||
| # ── Locate or fetch sycl-tla ────────────────────────────────────────────────── | ||
| if(SYCL_TLA_DIR) | ||
| if(NOT EXISTS "${SYCL_TLA_DIR}/CMakeLists.txt") | ||
| message(FATAL_ERROR | ||
| "SYCL_TLA_DIR='${SYCL_TLA_DIR}' does not contain CMakeLists.txt. " | ||
| "Check the path or leave SYCL_TLA_DIR empty to auto-fetch.") | ||
| endif() | ||
| message(STATUS "xe-fuse: using sycl-tla at ${SYCL_TLA_DIR}") | ||
| add_subdirectory(${SYCL_TLA_DIR} ${CMAKE_BINARY_DIR}/_sycl_tla EXCLUDE_FROM_ALL) | ||
| else() | ||
| message(STATUS "xe-fuse: fetching sycl-tla (tag=${SYCL_TLA_GIT_TAG}) via FetchContent") | ||
| include(FetchContent) | ||
| FetchContent_Declare(sycl_tla | ||
| GIT_REPOSITORY https://github.com/intel/sycl-tla.git | ||
| GIT_TAG ${SYCL_TLA_GIT_TAG} | ||
| GIT_SHALLOW ON) | ||
| FetchContent_MakeAvailable(sycl_tla) | ||
| set(SYCL_TLA_DIR ${sycl_tla_SOURCE_DIR} CACHE PATH "" FORCE) | ||
| message(STATUS "xe-fuse: sycl-tla fetched to ${SYCL_TLA_DIR}") | ||
| endif() | ||
|
|
||
| # ── DPCPP::DPCPP (normally created by sycl-tla; be defensive) ───────────────── | ||
| if(NOT TARGET DPCPP::DPCPP) | ||
| list(APPEND CMAKE_MODULE_PATH "${SYCL_TLA_DIR}/cmake") | ||
| find_package(DPCPP REQUIRED) | ||
| endif() | ||
|
|
||
| # ── xe_fuse INTERFACE library ───────────────────────────────────────────────── | ||
| add_library(xe_fuse INTERFACE) | ||
| add_library(xe_fuse::xe_fuse ALIAS xe_fuse) | ||
|
|
||
| target_include_directories(xe_fuse INTERFACE | ||
| $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||
| $<INSTALL_INTERFACE:include>) | ||
|
|
||
| target_compile_definitions(xe_fuse INTERFACE | ||
| CUTLASS_ENABLE_SYCL | ||
| SYCL_INTEL_TARGET) | ||
|
|
||
| target_link_libraries(xe_fuse INTERFACE | ||
| CUTLASS | ||
| DPCPP::DPCPP) | ||
|
|
||
| # ── Internal harness target (tests + examples only, NOT installed) ───────────── | ||
| # Provides sycl_common.hpp / helper.h from sycl-tla examples/common and | ||
| # the CUTLASS util headers (tools/util/include + MKL). | ||
| add_library(_xe_fuse_test_harness INTERFACE) | ||
| target_include_directories(_xe_fuse_test_harness INTERFACE | ||
| ${SYCL_TLA_DIR}/examples/common) | ||
| target_link_libraries(_xe_fuse_test_harness INTERFACE | ||
| xe_fuse | ||
| nvidia::cutlass::tools::util) | ||
|
|
||
| # ── Helper function ──────────────────────────────────────────────────────────── | ||
| include(cmake/XeFuseHelpers.cmake) | ||
|
|
||
| # ── Subdirectories ───────────────────────────────────────────────────────────── | ||
| if(XE_FUSE_BUILD_TESTS) | ||
| add_subdirectory(tests) | ||
| endif() | ||
| if(XE_FUSE_BUILD_EXAMPLES) | ||
| add_subdirectory(examples) | ||
| endif() | ||
|
|
||
| # ── Install rules ────────────────────────────────────────────────────────────── | ||
| include(GNUInstallDirs) | ||
| include(CMakePackageConfigHelpers) | ||
|
|
||
| install(TARGETS xe_fuse | ||
| EXPORT XeFuseTargets | ||
| INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) | ||
| install(DIRECTORY include/ | ||
| DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) | ||
| install(EXPORT XeFuseTargets | ||
| FILE XeFuseTargets.cmake | ||
| NAMESPACE xe_fuse:: | ||
| DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/XeFuse) | ||
| configure_package_config_file( | ||
| cmake/XeFuseConfig.cmake.in | ||
| ${CMAKE_CURRENT_BINARY_DIR}/XeFuseConfig.cmake | ||
| INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/XeFuse) | ||
| write_basic_package_version_file( | ||
| ${CMAKE_CURRENT_BINARY_DIR}/XeFuseConfigVersion.cmake | ||
| VERSION ${PROJECT_VERSION} | ||
| COMPATIBILITY AnyNewerVersion) | ||
| install(FILES | ||
| ${CMAKE_CURRENT_BINARY_DIR}/XeFuseConfig.cmake | ||
| ${CMAKE_CURRENT_BINARY_DIR}/XeFuseConfigVersion.cmake | ||
| DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/XeFuse) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| # xe-fuse wrapper Makefile | ||
| # | ||
| # Usage: | ||
| # make # configure + build (auto-fetches sycl-tla) | ||
| # make SYCL_TLA_DIR=/path/to/sycl-tla # use existing sycl-tla checkout | ||
| # make SYCL_TARGET=intel_gpu_pvc # different GPU target | ||
| # make BUILD_TYPE=Debug # debug build | ||
| # make tests # build only tests | ||
| # make examples # build only examples | ||
| # make install PREFIX=/opt/xe-fuse # install headers + cmake package | ||
| # make clean # remove build dir | ||
| # make help # show this help | ||
|
|
||
| BUILD_DIR ?= build | ||
| BUILD_TYPE ?= Release | ||
| SYCL_TARGET ?= intel_gpu_bmg_g31 | ||
| SYCL_TLA_DIR ?= | ||
| PREFIX ?= $(abspath install) | ||
| NPROC := $(shell nproc 2>/dev/null || echo 8) | ||
|
|
||
| CMAKE_ARGS := \ | ||
| -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) \ | ||
| -DDPCPP_SYCL_TARGET=$(SYCL_TARGET) \ | ||
| -DXE_FUSE_BUILD_TESTS=ON \ | ||
| -DXE_FUSE_BUILD_EXAMPLES=ON | ||
|
|
||
| ifneq ($(SYCL_TLA_DIR),) | ||
| CMAKE_ARGS += -DSYCL_TLA_DIR=$(abspath $(SYCL_TLA_DIR)) | ||
| endif | ||
|
|
||
| .PHONY: all configure build tests examples install clean help | ||
|
|
||
| all: build | ||
|
|
||
| configure: | ||
| cmake -B $(BUILD_DIR) \ | ||
| -DCMAKE_TOOLCHAIN_FILE=$(abspath cmake/toolchain-intel-xe.cmake) \ | ||
| $(CMAKE_ARGS) \ | ||
| $(CURDIR) | ||
|
|
||
| build: configure | ||
| cmake --build $(BUILD_DIR) --parallel $(NPROC) | ||
|
|
||
| tests: configure | ||
| cmake --build $(BUILD_DIR) --parallel $(NPROC) --target $(shell \ | ||
| cmake --build $(BUILD_DIR) --target help 2>/dev/null | grep '^test_\|^tile_sweep\|^gemm_\|^moe_tile' | awk '{print $$1}' | tr '\n' ' ') | ||
| @echo "" | ||
| @echo "Test binaries are in $(BUILD_DIR)/tests/" | ||
| @echo "Submit GPU jobs with: sbatch tests/run_tests.sh" | ||
|
|
||
| examples: configure | ||
| cmake --build $(BUILD_DIR) --parallel $(NPROC) --target moe_expert_builder moe_expert_fused | ||
| @echo "Example binaries are in $(BUILD_DIR)/examples/" | ||
|
|
||
| install: build | ||
| cmake --install $(BUILD_DIR) --prefix $(PREFIX) | ||
|
|
||
| clean: | ||
| rm -rf $(BUILD_DIR) | ||
|
|
||
| help: | ||
| @echo "Targets : all configure build tests examples install clean" | ||
| @echo "" | ||
| @echo "Variables:" | ||
| @echo " BUILD_DIR = $(BUILD_DIR) (output directory)" | ||
| @echo " BUILD_TYPE = $(BUILD_TYPE) (Release | Debug)" | ||
| @echo " SYCL_TARGET = $(SYCL_TARGET) (e.g. intel_gpu_bmg_g31, intel_gpu_pvc)" | ||
| @echo " SYCL_TLA_DIR = $(if $(SYCL_TLA_DIR),$(SYCL_TLA_DIR),(empty — auto-fetch))" | ||
| @echo " PREFIX = $(PREFIX) (cmake --install prefix)" | ||
| @echo "" | ||
| @echo "Examples:" | ||
| @echo " make SYCL_TLA_DIR=~/sycl-tla" | ||
| @echo " make SYCL_TARGET=intel_gpu_pvc BUILD_TYPE=Debug" | ||
| @echo " make install PREFIX=/opt/xe-fuse" | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing tests/run_tests.sh