Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c49c8a7d6b93
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: be1b02cbd12a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 24, 2020

  1. libxsmm: 1.13 -> 1.15

    r-ryantm committed May 24, 2020
    Copy the full SHA
    0d64b73 View commit details

Commits on May 25, 2020

  1. Merge pull request #88830 from r-ryantm/auto-update/libxsmm

    libxsmm: 1.13 -> 1.15
    marsam authored May 25, 2020
    Copy the full SHA
    be1b02c View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/libxsmm/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/libxsmm/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
}:

let
version = "1.13";
version = "1.15";
in stdenv.mkDerivation {
pname = "libxsmm";
inherit version;
@@ -12,7 +12,7 @@ in stdenv.mkDerivation {
owner = "hfp";
repo = "libxsmm";
rev = "refs/tags/${version}";
sha256 = "1c15ccy7vbmvxkfnc7sn26wnf6gr6gxgkmilpgpycm1fhi8ikd6w";
sha256 = "1406qk7k2k4qfqy4psqk55iihsrx91w8kjgsa82jxj50nl9nw5nj";
};

buildInputs = [
@@ -33,7 +33,7 @@ in stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives";
license = licenses.bsd3;
homepage = https://github.com/hfp/libxsmm ;
homepage = "https://github.com/hfp/libxsmm";
platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ chessai ];
inherit version;