Files
xc-llm-ascend/csrc/cmake/modules/Findalog.cmake
Chenxi Qian 554f16ae1f [Kernel] add custom op GmmSwigluQuantWeightNzTensorList (#3804)
### What this PR does / why we need it?

This PR introduces support for adding custom CANN `aclnn` ops to
`vllm-ascend`, allowing users to define and use their own custom
operators.

Key changes include:
- Building and installing custom ops into the `vllm-ascend`-specified
directory
- Binding the `aclnn` op interface to the `torch.ops._C_ascend` module
- Enabling invocation of these ops within `vllm-ascend`

This PR includes a sample custom op:
`aclnnGroupedMatmulSwigluQuantWeightNzTensorList`, which is adapted from
the CANN operator
[`aclnnGroupedMatmulSwigluQuantWeightNZ`](https://www.hiascend.com/document/detail/zh/canncommercial/83RC1/API/aolapi/context/aclnnGroupedMatmulSwigluQuantWeightNZ.md).
Its input parameters `weight` and `weight_scale` now accept
`list[torch.Tensor]` (i.e., `at::TensorList`).

### Does this PR introduce _any_ user-facing change?

No.


- vLLM version: v0.11.2

---------

Signed-off-by: QianChenxi <chenxi.qian.cq@outlook.com>
2025-11-28 18:06:39 +08:00

114 lines
4.0 KiB
CMake

# Copyright (c) 2025 Huawei Technologies Co., Ltd.
# This file is a part of the CANN Open Software.
# Licensed under CANN Open Software License Agreement Version 1.0 (the "License").
# Please refer to the License for details. You may not use this file except in compliance with the License.
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
# See LICENSE in the root of the software repository for the full text of the License.
# ======================================================================================================================
if (alog_FOUND)
message(STATUS "Package alog has been found.")
return()
endif()
set(_cmake_targets_defined "")
set(_cmake_targets_not_defined "")
set(_cmake_expected_targets "")
foreach(_cmake_expected_target IN ITEMS slog alog alog_headers)
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
if(TARGET "${_cmake_expected_target}")
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
else()
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
endif()
endforeach()
unset(_cmake_expected_target)
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
unset(_cmake_targets_defined)
unset(_cmake_targets_not_defined)
unset(_cmake_expected_targets)
unset(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)
return()
endif()
if(NOT _cmake_targets_defined STREQUAL "")
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
endif()
unset(_cmake_targets_defined)
unset(_cmake_targets_not_defined)
unset(_cmake_expected_targets)
find_path(_INCLUDE_DIR
NAMES base/alog_pub.h
NO_CMAKE_SYSTEM_PATH
NO_CMAKE_FIND_ROOT_PATH)
find_library(slog_SHARED_LIBRARY
NAMES libascendalog.so
PATH_SUFFIXES lib64
NO_CMAKE_SYSTEM_PATH
NO_CMAKE_FIND_ROOT_PATH)
find_library(alog_SHARED_LIBRARY
NAMES libascendalog.so
PATH_SUFFIXES lib64
NO_CMAKE_SYSTEM_PATH
NO_CMAKE_FIND_ROOT_PATH)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(alog
FOUND_VAR
alog_FOUND
REQUIRED_VARS
_INCLUDE_DIR
slog_SHARED_LIBRARY
alog_SHARED_LIBRARY
)
if(alog_FOUND)
set(alog_INCLUDE_DIR "${_INCLUDE_DIR}")
include(CMakePrintHelpers)
message(STATUS "Variables in alog module:")
cmake_print_variables(alog_INCLUDE_DIR)
cmake_print_variables(slog_SHARED_LIBRARY)
cmake_print_variables(alog_SHARED_LIBRARY)
add_library(slog SHARED IMPORTED)
set_target_properties(slog PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "LOG_CPP;PROCESS_LOG"
INTERFACE_LINK_LIBRARIES "alog_headers"
IMPORTED_LOCATION "${slog_SHARED_LIBRARY}"
)
add_library(alog SHARED IMPORTED)
set_target_properties(alog PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "LOG_CPP;PROCESS_LOG"
INTERFACE_LINK_LIBRARIES "alog_headers"
IMPORTED_LOCATION "${alog_SHARED_LIBRARY}"
)
add_library(alog_headers INTERFACE IMPORTED)
set_target_properties(alog_headers PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${alog_INCLUDE_DIR}"
)
include(CMakePrintHelpers)
cmake_print_properties(TARGETS slog
PROPERTIES INTERFACE_COMPILE_DEFINITIONS INTERFACE_LINK_LIBRARIES IMPORTED_LOCATION
)
cmake_print_properties(TARGETS alog
PROPERTIES INTERFACE_COMPILE_DEFINITIONS INTERFACE_LINK_LIBRARIES IMPORTED_LOCATION
)
cmake_print_properties(TARGETS alog_headers
PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
)
endif()
# Cleanup temporary variables.
set(_INCLUDE_DIR)