File: 0001-remove-immintrin-header.patch

package info (click to toggle)
hipblas 6.4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 26,548 kB
  • sloc: cpp: 209,856; f90: 49,800; python: 4,680; ansic: 1,141; sh: 799; makefile: 50; xml: 23
file content (32 lines) | stat: -rw-r--r-- 866 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
From: Cordell Bloor <cgmb@slerp.xyz>
Date: Fri, 22 Mar 2024 13:38:33 -0600
Subject: remove immintrin header

This header is unused, but it breaks the build on arm64 and ppc64el
because it is not available on those platforms.

Forwarded: https://github.com/ROCm/hipBLAS/pull/848
---
 clients/include/hipblas_arguments.hpp | 1 -
 1 file changed, 1 deletion(-)

--- a/clients/include/hipblas_arguments.hpp
+++ b/clients/include/hipblas_arguments.hpp
@@ -30,7 +30,6 @@
 #include "hipblas_datatype2string.hpp"
 #include "utility.h"
 #include <cmath>
-#include <immintrin.h>
 #include <random>
 #include <stdio.h>
 #include <stdlib.h>
--- a/clients/include/type_utils.h
+++ b/clients/include/type_utils.h
@@ -30,7 +30,6 @@
 #include "complex.hpp"
 #include <cmath>
 #include <cstdio>
-#include <immintrin.h>
 #include <iostream>
 #include <random>
 #include <type_traits>