mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-19 06:37:38 +00:00
* Add README.md for testing * Add tensor_memory_manager. * ck-builder: tensor memory manager rebase fixes This fixes some issues caused by the API being changed recently. Also, this streamlines the ckt namespace to always be ck_tile::builder::test, as this is already being used by other tests Really, this commit should be squashed into the previous, but I'm keeping it separate for brevity. * ck-builder: test arguments initial prototype * ck-builder: test system initial prototype * ck-builder: fix non-standardized copyright comments * ck-builder: new prototype * ck-builder: group testing inputs/outputs into a separate structure This is basically the return of the tensor memory manager after all, except that the design is more closely tied to the actual operation. Using a struct allows us to add additional input/output tensors without breaking code (by defaulting those new parameters). Note that the tensors are split into a separate inputs/outputs because we usually want to allocate the output _twice_: once for the real computation and once for the reference computation. * ck-builder: simplify prototype naming; start docs * ck-builder: update testing readme * ck-builder: testing documentation * ck-builder: HipStatusMatcher This matcher can be used to check HIP status codes and provide nice and readable error messages. * ck-builder: tensor_buffer.hpp tests * ck-builder: conv_fwd.hpp tests * ck-builder: add example end-to-end test in conv fwd 2d fp16 * ck-builder: simplify extent usage * ck-builder: update testing doc * ck-builder: skip end to end test on non-gfx9 * fix check_copyright_year interpreter /bin/bash is not guaranteed to exist on Linux. Signed, a NixOS user * ck-builder: fix copyrights * ck-builder: reduce conv fwd testing size This test allocated 24GB of memory, too much for 16GB cards. --------- Co-authored-by: John Shumway <jshumway@amd.com>
73 lines
1.9 KiB
Bash
Executable File
73 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# This script checks if files have the correct copyright header template.
|
|
# It supports .hpp, .cpp, .inc, .py, .sh, and .cmake files.
|
|
#
|
|
# Usage: ./check_copyright_year.sh <file1> <file2> ...
|
|
|
|
exit_code=0
|
|
|
|
# Expected copyright header lines (without comment characters)
|
|
COPYRIGHT_LINE="Copyright (c) Advanced Micro Devices, Inc., or its affiliates."
|
|
SPDX_LINE="SPDX-License-Identifier: MIT"
|
|
|
|
check_file() {
|
|
local file=$1
|
|
local basename="${file##*/}"
|
|
local ext="${file##*.}"
|
|
local comment_char
|
|
|
|
# Determine comment character based on filename or extension
|
|
if [[ "$basename" == "CMakeLists.txt" ]]; then
|
|
comment_char="#"
|
|
else
|
|
case "$ext" in
|
|
cpp|hpp|inc)
|
|
comment_char="//"
|
|
;;
|
|
py|sh|cmake)
|
|
comment_char="#"
|
|
;;
|
|
*)
|
|
# Skip files with unsupported extensions
|
|
return 0
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
# Build expected header patterns
|
|
expected_copyright="$comment_char $COPYRIGHT_LINE"
|
|
expected_spdx="$comment_char $SPDX_LINE"
|
|
|
|
# Check if file contains both required lines
|
|
if ! grep -qF "$expected_copyright" "$file"; then
|
|
echo "ERROR: File $file is missing the correct copyright header line."
|
|
echo " Expected: $expected_copyright"
|
|
return 1
|
|
fi
|
|
|
|
if ! grep -qF "$expected_spdx" "$file"; then
|
|
echo "ERROR: File $file is missing the correct SPDX license identifier line."
|
|
echo " Expected: $expected_spdx"
|
|
return 1
|
|
fi
|
|
|
|
return 0
|
|
}
|
|
|
|
# Process each file provided as argument
|
|
for file in "$@"; do
|
|
# Skip if file doesn't exist or is a directory
|
|
if [[ ! -f "$file" ]]; then
|
|
continue
|
|
fi
|
|
|
|
if ! check_file "$file"; then
|
|
exit_code=1
|
|
fi
|
|
done
|
|
|
|
exit $exit_code
|