summaryrefslogtreecommitdiffstats
path: root/conf/machine/intel-skylake-64.conf
Commit message (Collapse)AuthorAgeFilesLines
* intel-skylake-64: use tune-x86-64-v3.incNaveen Saini2023-01-041-1/+1
| | | | | | | | tune-x86-64-v3.inc uses x86-64 v3 level of instruction set. x86-64-v3: (close to Haswell) AVX, AVX2, BMI1, BMI2, F16C, FMA, LZCNT, MOVBE, XSAVE Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* conf: remove usage of X86_TUNE_DIR varAnuj Mittal2022-04-051-1/+1
| | | | | | | The main branch only supports building with kirkstone now so we no longer need this to tweak paths for older branches. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* conf: set COMPATIBLE_MACHINE for dpdk-moduleAnuj Mittal2022-01-281-0/+1
| | | | | | | DPDK layer now requires COMPATIBLE_MACHINE to be set for dpdk-module recipe too. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* layer.conf: update machine confs with new tune locationsNaveen Saini2021-08-231-1/+1
| | | | | | | Added logic to make sure, it does not break with old releases. Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* Convert to new override syntaxAnuj Mittal2021-07-311-2/+2
| | | | | | | Use the convert-overrides.py to convert to new syntax and manually fix some additional changes. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* machine: remove old vaapi-driver from MACHINE_HWCODECSAnuj Mittal2020-12-231-1/+1
| | | | | | | | | | | | | media-driver is the newer and supported driver and should be used instead. Supported platforms list is updated with each release in the notes available here: https://github.com/intel/media-driver/releases Old platforms that need the old driver should override or extend MACHINE_HWCODECS. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* conf/machine: use a weaker operator to set SERIAL_CONSOLESAnuj Mittal2020-10-281-1/+1
| | | | | | | | | We should be able to over-ride this when appropriate in a layer or local.conf. Fixes [YOCTO #14109] Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* intel-skylake-64: add it to dpdk COMPATIBLE_MACHINEAnuj Mittal2020-04-201-0/+2
| | | | | | Enables it to be built for this MACHINE value. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* intel-skylake-64: include mediasdk and media-driver in HWCODECS12.0-zeus-3.0Anuj Mittal2019-10-301-1/+1
| | | | | | | media-driver is recommended to be used for BDW/SKL and above instead of intel-vaapi-driver. Include it by default along with Media SDK codecs. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* conf: add new machine intel-skylake-64Naveen Saini2019-08-211-0/+33
Add 64-bit new machine (intel-skylake-64) with -march=skylake and avx2 instruction-set set up. We do see a qemu-usermode failure at build time, on setup of avx2 instruction-set as QEMU does not support AVX instruction set. Check this: https://bugs.launchpad.net/qemu/+bug/1818075 So to bypass this issue disabling qemu-usermode for intel-skylake-64 machine. Due to above limitation and in order to not affecting existing machines, this new machine is being proposed to add. A quick performance comparision between intel-corei7-64 vs intel-skylake-64 machines Measurements are in time, taken by the benchmark tests. Less is better. Test/Benchmark intel-corei7-64 intel-skylake-64 (1) CppPerformanceBenchmarks (Test: Math Library) (1st) 5m 15.70s 4m 36.39s (2nd) 5m 16.37s 4m 36.51s (3rd) 5m 15.54s 4m 37.80s CppPerformanceBenchmarks is a set of C++ compiler performance benchmarks. (2) AOBench (1st) 0m 35.07s 0m 28.74s (2nd) 0m 34.90s 0m 28.72s (3rd) 0m 34.85s 0m 28.89s AOBench is a lightweight ambient occlusion renderer, written in C. The test profile is using a size of 2048 x 2048. (3) C-Ray (1st) 320 seconds 232 seconds (2nd) 320 seconds 232 seconds (3rd) 321 seconds 232 seconds C-Ray, a simple raytracer designed to test the floating-point CPU performance. For this patch, 'bitbake world' gets successfully built with latest poky master. Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>