9 stdenv.mkDerivation rec {
11 rocmVersion = "5.3.1";
12 # For some reason they didn't add a tag for 5.3.1, should be compatible, change to rocmVersion later
15 src = fetchFromGitHub {
16 owner = "ROCmSoftwarePlatform";
18 rev = "rocm-${version}"; # change to rocmVersion later
19 hash = "sha256-s/5gAH5vh2tgATZemPP66juQFDg8BR2sipzX2Q6pOOQ=";
32 "-DBUILD_FAT_LIBMLIRMIOPEN=ON"
36 description = "MLIR-based convolution and GEMM kernel generator";
37 homepage = "https://github.com/ROCmSoftwarePlatform/rocMLIR";
38 license = with licenses; [ asl20 ];
39 maintainers = with maintainers; [ Madouura ];
40 broken = rocmVersion != hip.version;