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>
|