2013-02-25 13:53:51 +00:00
|
|
|
/*
|
|
|
|
* This file is a part of Pcompress, a chunked parallel multi-
|
|
|
|
* algorithm lossless compression and decompression program.
|
|
|
|
*
|
2013-03-07 14:56:48 +00:00
|
|
|
* Copyright (C) 2012-2013 Moinak Ghosh. All rights reserved.
|
2013-02-25 13:53:51 +00:00
|
|
|
* Use is subject to license terms.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
2013-03-07 14:56:48 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2013-02-25 13:53:51 +00:00
|
|
|
* moinakg@belenix.org, http://moinakg.wordpress.com/
|
|
|
|
*/
|
|
|
|
|
2013-01-20 17:23:36 +00:00
|
|
|
#include <stdio.h>
|
2014-05-04 16:33:40 +00:00
|
|
|
#include <stdlib.h>
|
2013-01-20 17:23:36 +00:00
|
|
|
#include <utils.h>
|
|
|
|
#include <cpuid.h>
|
|
|
|
|
2014-05-04 16:33:40 +00:00
|
|
|
void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
printf("Usage: sse_level [--avx]\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2013-01-20 17:23:36 +00:00
|
|
|
int
|
2014-05-04 16:33:40 +00:00
|
|
|
main(int argc, char *argv[])
|
2013-01-20 17:23:36 +00:00
|
|
|
{
|
2014-04-30 17:16:24 +00:00
|
|
|
processor_cap_t pc;
|
2014-05-04 16:33:40 +00:00
|
|
|
int avx_detect = 0;
|
2013-01-20 17:23:36 +00:00
|
|
|
cpuid_basic_identify(&pc);
|
2014-05-04 16:33:40 +00:00
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
if (strcmp(argv[1], "--avx") == 0)
|
|
|
|
avx_detect = 1;
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
if (!avx_detect) {
|
|
|
|
if (pc.sse_level == 3 && pc.sse_sub_level == 1) {
|
|
|
|
printf("ssse%d", pc.sse_level);
|
|
|
|
pc.sse_sub_level = 0;
|
|
|
|
} else {
|
|
|
|
printf("sse%d", pc.sse_level);
|
|
|
|
}
|
|
|
|
if (pc.sse_sub_level > 0)
|
|
|
|
printf(".%d\n", pc.sse_sub_level);
|
|
|
|
else
|
|
|
|
printf("\n");
|
2013-01-24 18:40:12 +00:00
|
|
|
} else {
|
2014-05-04 16:33:40 +00:00
|
|
|
if (pc.avx_level == 1)
|
|
|
|
printf("avx\n");
|
|
|
|
else if (pc.avx_level == 2)
|
|
|
|
printf("avx2\n");
|
2013-01-24 18:40:12 +00:00
|
|
|
}
|
2014-05-04 16:33:40 +00:00
|
|
|
|
2013-01-20 17:23:36 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|