From b826151258b951b04919e038e5b078c15276363a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Mon, 26 Oct 2020 09:04:29 +0100 Subject: [PATCH] new file: a/Advisor/Advisor-2020_update3.eb new file: v/VTune/VTune-2020_update3-GCC.eb --- a/Advisor/Advisor-2020_update3.eb | 23 +++++++++++++++++ v/VTune/VTune-2020_update3-GCC.eb | 42 +++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 a/Advisor/Advisor-2020_update3.eb create mode 100644 v/VTune/VTune-2020_update3-GCC.eb diff --git a/a/Advisor/Advisor-2020_update3.eb b/a/Advisor/Advisor-2020_update3.eb new file mode 100644 index 00000000..78e4c566 --- /dev/null +++ b/a/Advisor/Advisor-2020_update3.eb @@ -0,0 +1,23 @@ +# IT4Innovations 2020 +# LK + +name = 'Advisor' +version = '2020_update3' + +homepage = 'https://software.intel.com/intel-advisor-xe' +description = """Vectorization Optimization and Thread Prototyping + - Vectorize & thread code or performance “dies” + - Easy workflow + data + tips = faster code faster + - Prioritize, Prototype & Predict performance gain + """ + +toolchain = SYSTEM + +sources = ['advisor_%(version)s.tar.gz'] + +dontcreateinstalldir = 'True' + +# license file +license_file = '/apps/licenses/intel/license.lic' + +moduleclass = 'perf' diff --git a/v/VTune/VTune-2020_update3-GCC.eb b/v/VTune/VTune-2020_update3-GCC.eb new file mode 100644 index 00000000..1d3497b8 --- /dev/null +++ b/v/VTune/VTune-2020_update3-GCC.eb @@ -0,0 +1,42 @@ +# IT4Innovations 2020 +# LK + +name = 'VTune' +version = '2020_update3' +versionsuffix = '-GCC' + +homepage = 'http://software.intel.com/en-us/intel-vtune-amplifier-xe' +description = "Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java." + +toolchain = SYSTEM + +sources = ['vtune_profiler_%(version)s.tar.gz'] +checksums = ['a673a21c71e780c38e7c6f60bd109088'] + +dontcreateinstalldir = 'True' + +#license file +license_file = '/apps/licenses/intel/license.lic' + +dependencies = [ + ('Pango', '1.44.7', '-GCCcore-9.3.0'), + ('X11', '20200222', '-GCCcore-9.3.0'), + ('GTK+', '3.24.17', '-GCCcore-9.3.0'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['vtune_profiler_2020.3.0.612611'], +} + +# Do necessary post-install steps to build VTune kernel modules +postinstallcmds = [ + 'mkdir %(installdir)s/modules', + 'cd %(installdir)s/vtune_profiler/sepdk/src/ && ' + './build-driver --install-dir=%(installdir)s/modules --non-interactive', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i', +] + +moduleclass = 'tools'