From 1fc26cf05b90c167d2f02599cc75b9df26e4d623 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Tue, 4 Jun 2019 12:15:16 +0200 Subject: remove old "ternary" stuff --- test/monniaux/bitsliced-tea/bstea.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'test/monniaux/bitsliced-tea') diff --git a/test/monniaux/bitsliced-tea/bstea.h b/test/monniaux/bitsliced-tea/bstea.h index 9ca4f776..15607464 100644 --- a/test/monniaux/bitsliced-tea/bstea.h +++ b/test/monniaux/bitsliced-tea/bstea.h @@ -5,17 +5,8 @@ #include #include "bstea_wordsize.h" -#include "../ternary.h" -/* + #define TERNARY(x, v1, v0) ((x) ? (v1) : (v0)) -*/ -#if __BSTEA_WORDSIZE==64 -#define TERNARY(x, v1, v0) TERNARY64(x, v1, v0) -#elif __BSTEA_WORDSIZE==32 -#define TERNARY(x, v1, v0) TERNARY32(x, v1, v0) -#else -#error What is the bit size !? -#endif #define TEA_ROUNDS 32 -- cgit From 625a93fe5ec46c7de81594b89f8cca5dd83dafc5 Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Wed, 17 Jul 2019 11:42:37 +0200 Subject: bitsliced-tea --- test/monniaux/bitsliced-tea/Makefile | 3 +++ test/monniaux/bitsliced-tea/make.proto | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 test/monniaux/bitsliced-tea/Makefile delete mode 100644 test/monniaux/bitsliced-tea/make.proto (limited to 'test/monniaux/bitsliced-tea') diff --git a/test/monniaux/bitsliced-tea/Makefile b/test/monniaux/bitsliced-tea/Makefile new file mode 100644 index 00000000..8c28ac37 --- /dev/null +++ b/test/monniaux/bitsliced-tea/Makefile @@ -0,0 +1,3 @@ +TARGET=bstea + +include ../rules.mk diff --git a/test/monniaux/bitsliced-tea/make.proto b/test/monniaux/bitsliced-tea/make.proto deleted file mode 100644 index 6cdc0814..00000000 --- a/test/monniaux/bitsliced-tea/make.proto +++ /dev/null @@ -1,4 +0,0 @@ -objdeps: [{name: bstea_run, compiler: gcc}] -target: bstea -name: bitsliced-tea -measures: [cycles] -- cgit From 1d7e934386fdb23f4e16f056e3d419be09ec0b02 Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Wed, 17 Jul 2019 14:42:40 +0200 Subject: Portage réussi et complet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/monniaux/bitsliced-tea/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/monniaux/bitsliced-tea') diff --git a/test/monniaux/bitsliced-tea/Makefile b/test/monniaux/bitsliced-tea/Makefile index 8c28ac37..02b35381 100644 --- a/test/monniaux/bitsliced-tea/Makefile +++ b/test/monniaux/bitsliced-tea/Makefile @@ -1,3 +1,3 @@ -TARGET=bstea +TARGET=bitsliced-tea include ../rules.mk -- cgit