From 0e655eec9adc343ddb7f1cbfd4a4bbf4d8b66ba3 Mon Sep 17 00:00:00 2001 From: liuf9 Date: Wed, 5 Feb 2025 10:10:31 +0800 Subject: [PATCH] Add BuildRequires for git and fix description typo in spec file. --- AI4C.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/AI4C.spec b/AI4C.spec index ea759dd..bbfb856 100644 --- a/AI4C.spec +++ b/AI4C.spec @@ -12,10 +12,10 @@ %global max_jobs 16 -Summary: %{name} is a framework which enables compilers compilers to integrate ML-driven compiler optimization. +Summary: %{name} is a framework which enables compilers to integrate ML-driven compiler optimization. Name: AI4C Version: 1.0.4 -Release: 4 +Release: 5 # Package onnxruntime and SafeInt have MIT License. # Package onnx has Apache License 2.0. License: MIT and ASL 2.0 and Boost and BSD @@ -44,9 +44,10 @@ BuildRequires: yaml-cpp BuildRequires: yaml-cpp-devel BuildRequires: gcc-plugin-devel BuildRequires: libstdc++-static +BuildRequires: git %description -%{name} is a framework which enables compilers compilers to integrate ML-driven compiler optimization. +%{name} is a framework which enables compilers to integrate ML-driven compiler optimization. %prep tar -xzf %{SOURCE0} -C . @@ -113,6 +114,9 @@ pushd %{build_dir}/python %changelog +* Wed Feb 05 2025 Feiyang Liu - 1.0.4-5 +- Add BuildRequires for git and fix description typo in spec file. + * Tue Dec 31 2024 Chunfei Yu - 1.0.4-4 - Bugfix and update inline and unroll model -- Gitee