You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	* Add check for simd acrh support * Updates * More polite and detailed error messages * Updates * Always true to conditional Co-authored-by: Leonid Fedorov <leonid.fedorov@mariadb.com>
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Copyright (C) 2022 MariaDB Corporation
 | 
						|
 | 
						|
   This program is free software; you can redistribute it and/or
 | 
						|
   modify it under the terms of the GNU General Public License
 | 
						|
   as published by the Free Software Foundation; version 2 of
 | 
						|
   the License.
 | 
						|
 | 
						|
   This program is distributed in the hope that it will be useful,
 | 
						|
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
   GNU General Public License for more details.
 | 
						|
 | 
						|
   You should have received a copy of the GNU General Public License
 | 
						|
   along with this program; if not, write to the Free Software
 | 
						|
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 | 
						|
   MA 02110-1301, USA. */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <iostream>
 | 
						|
 | 
						|
#ifdef __aarch64__
 | 
						|
#include <sys/auxv.h>
 | 
						|
#include <asm/hwcap.h>
 | 
						|
#endif
 | 
						|
 | 
						|
namespace archcheck
 | 
						|
{
 | 
						|
 | 
						|
enum class arcitecture
 | 
						|
{
 | 
						|
   DEFAULT = 0,
 | 
						|
   SSE4_2 = 1,
 | 
						|
   ASIMD = 2,
 | 
						|
   UNKNOWN = -1
 | 
						|
};
 | 
						|
 | 
						|
#if defined(__x86_64__)
 | 
						|
__attribute__ ((target ("default")))
 | 
						|
arcitecture checkArchitecture()
 | 
						|
{
 | 
						|
  // The default version.
 | 
						|
  return arcitecture::DEFAULT;
 | 
						|
}
 | 
						|
 | 
						|
__attribute__ ((target ("sse4.2")))
 | 
						|
arcitecture checkArchitecture ()
 | 
						|
{
 | 
						|
  // version for SSE4.2
 | 
						|
  return arcitecture::SSE4_2;
 | 
						|
}
 | 
						|
#elif defined(__aarch64__)
 | 
						|
arcitecture checkArchitecture()
 | 
						|
{
 | 
						|
  // version for arm
 | 
						|
  if ((getauxval(AT_HWCAP) & HWCAP_ASIMD) != 0)
 | 
						|
    return arcitecture::ASIMD;
 | 
						|
  return arcitecture::DEFAULT;
 | 
						|
}
 | 
						|
#else
 | 
						|
arcitecture checkArchitecture()
 | 
						|
{
 | 
						|
  return arcitecture::UNKNOWN;
 | 
						|
}
 | 
						|
#endif
 | 
						|
}
 |