diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-08 08:38:06 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-09 09:35:57 +0700 |
commit | f11f9811afaad163f86d182cf56d170bd7041b97 (patch) | |
tree | c4611e07520fca67cb678024f1287efdee4336bb /libraries | |
parent | 41cf35dcf3fbfbaecf5b60bf3d562ad1c103150f (diff) | |
download | slackbuilds-f11f9811afaad163f86d182cf56d170bd7041b97.tar.gz |
libraries/beignet: Removed (incompatible with the newer llvm).
This also has been deprecated in favor of NEO OpenCL driver
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/beignet/README | 4 | ||||
-rw-r--r-- | libraries/beignet/beignet.SlackBuild | 119 | ||||
-rw-r--r-- | libraries/beignet/beignet.info | 10 | ||||
-rw-r--r-- | libraries/beignet/llvm6.patch | 30 | ||||
-rw-r--r-- | libraries/beignet/slack-desc | 19 |
5 files changed, 0 insertions, 182 deletions
diff --git a/libraries/beignet/README b/libraries/beignet/README deleted file mode 100644 index 74da0d9dfb..0000000000 --- a/libraries/beignet/README +++ /dev/null @@ -1,4 +0,0 @@ -Beignet contains the code to run OpenCL programs on Intel GPUs, which defines -and implements host functions required to initialize the device, create the -command queues, the kernels, and the programs and run them on the GPU. It also -contains the compiler part of the stack. diff --git a/libraries/beignet/beignet.SlackBuild b/libraries/beignet/beignet.SlackBuild deleted file mode 100644 index 54caded521..0000000000 --- a/libraries/beignet/beignet.SlackBuild +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/bash - -# Slackware build script for beignet - -# Copyright (c) 2017 Alan Alberghini <414N@slacky.it> -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# ----------------------------------------------------------------------------- - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=beignet -VERSION=${VERSION:-1.3.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} -DOCS="README.md docs NEWS.mdwn COPYING" -INTERNAL_NAME="Beignet-${VERSION}-Source" - -# Whether to include or remove OpenCL header files from final package -INCLUDE_HEADERS=${INCLUDE_HEADERS:-1} - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $INTERNAL_NAME -tar xvf $CWD/${PRGNAM}-${VERSION}-source.tar.gz -cd $INTERNAL_NAME -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -patch -p1 < $CWD/llvm6.patch - -mkdir -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release .. - make - make install DESTDIR=$PKG -cd .. - -# Remove header files, if chosen so -if [ "$INCLUDE_HEADERS" = 0 ]; then - rm -rf $PKG/usr/include -fi - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - $DOCS \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/libraries/beignet/beignet.info b/libraries/beignet/beignet.info deleted file mode 100644 index fff7aa7b6d..0000000000 --- a/libraries/beignet/beignet.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="beignet" -VERSION="1.3.2" -HOMEPAGE="https://01.org/beignet" -DOWNLOAD="https://01.org/sites/default/files/beignet-1.3.2-source.tar.gz" -MD5SUM="a577ab18d67a891c8767b8ea62253543" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Alan Alberghini" -EMAIL="414N@slacky.it" diff --git a/libraries/beignet/llvm6.patch b/libraries/beignet/llvm6.patch deleted file mode 100644 index f3634e2389..0000000000 --- a/libraries/beignet/llvm6.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -uprb Beignet-1.3.2-Source.orig/backend/src/llvm/llvm_to_gen.cpp Beignet-1.3.2-Source/backend/src/llvm/llvm_to_gen.cpp ---- Beignet-1.3.2-Source.orig/backend/src/llvm/llvm_to_gen.cpp 2017-10-24 09:04:48.000000000 +0300 -+++ Beignet-1.3.2-Source/backend/src/llvm/llvm_to_gen.cpp 2018-03-16 16:08:54.669963824 +0200 -@@ -322,7 +322,11 @@ namespace gbe - DataLayout DL(&mod); - - gbeDiagnosticContext dc; -+#if LLVM_VERSION_MAJOR >= 6 -+ mod.getContext().setDiagnosticHandlerCallBack(&gbeDiagnosticHandler,&dc); -+#else - mod.getContext().setDiagnosticHandler(&gbeDiagnosticHandler,&dc); -+#endif - - #if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 37 - mod.setDataLayout(DL); -diff -uprb Beignet-1.3.2-Source.orig/backend/src/llvm/llvm_unroll.cpp Beignet-1.3.2-Source/backend/src/llvm/llvm_unroll.cpp ---- Beignet-1.3.2-Source.orig/backend/src/llvm/llvm_unroll.cpp 2017-10-24 09:04:48.000000000 +0300 -+++ Beignet-1.3.2-Source/backend/src/llvm/llvm_unroll.cpp 2018-03-16 16:09:47.736403557 +0200 -@@ -205,7 +205,9 @@ namespace gbe { - if (parentTripCount != 0 && currTripCount * parentTripCount > 32) { - //Don't change the unrollID if doesn't force unroll. - //setUnrollID(parentL, false); --#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 38 -+#if LLVM_VERSION_MAJOR >= 6 -+ loopInfo.erase(parentL); -+#elif LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 38 - loopInfo.markAsRemoved(parentL); - #else - LPM.deleteLoopFromQueue(parentL); -Only in Beignet-1.3.2-Source: build diff --git a/libraries/beignet/slack-desc b/libraries/beignet/slack-desc deleted file mode 100644 index cf8e96e933..0000000000 --- a/libraries/beignet/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -beignet: beignet (OpenCL for Intel GPUs) -beignet: -beignet: Beignet contains the code to run OpenCL programs on Intel GPUs, which -beignet: defines and implements host functions required to initialize the -beignet: device, create the command queues, the kernels, and the programs and -beignet: run them on the GPU. It also contains the compiler part of the stack. -beignet: -beignet: Homepage: https://01.org/beignet -beignet: -beignet: -beignet: |