Add wasm tacle-bench targets

This commit is contained in:
2026-06-12 20:06:22 +02:00
parent 30daa8a00c
commit 08c2e9c13d
1122 changed files with 520422 additions and 0 deletions

View File

@ -0,0 +1,34 @@
/*
This program is part of the TACLeBench benchmark suite.
Version V 2.0
Name: quicksort
Author: Matthew R. Guthaus
Function: quicksort applies a recursive quicksort algorithm to two different
input sets.
Source: MiBench
http://wwweb.eecs.umich.edu/mibench
Original name: qsort
Changes: No major functional changes.
License: GPL
*/
#ifndef __QUICKSORTSTDLIB_H
#define __QUICKSORTSTDLIB_H
int quicksort_compare_strings( const char *, const char * );
int quicksort_compare_vectors( const char *, const char * );
void quicksort_swapi( char *, char *, unsigned long );
char *quicksort_pivot_strings( char *, unsigned long, unsigned long );
char *quicksort_pivot_vectors( char *, unsigned long, unsigned long );
#endif