parent
f8cc5edb89
commit
da43b22407
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"active" : "yes",
|
||||||
|
"name" : "work100k",
|
||||||
|
"path" : "work100k_wasm.so",
|
||||||
|
"port" : 10000,
|
||||||
|
"argsize" : 1,
|
||||||
|
"http-req-headers" : [ ],
|
||||||
|
"http-req-content-type" : "text/plain",
|
||||||
|
"http-req-size": 102600,
|
||||||
|
"http-resp-headers" : [ ],
|
||||||
|
"http-resp-size" : 102600,
|
||||||
|
"http-resp-content-type" : "text/plain"
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"active" : "yes",
|
||||||
|
"name" : "work10k",
|
||||||
|
"path" : "work10k_wasm.so",
|
||||||
|
"port" : 10000,
|
||||||
|
"argsize" : 1,
|
||||||
|
"http-req-headers" : [ ],
|
||||||
|
"http-req-content-type" : "text/plain",
|
||||||
|
"http-req-size": 10480,
|
||||||
|
"http-resp-headers" : [ ],
|
||||||
|
"http-resp-size" : 10480,
|
||||||
|
"http-resp-content-type" : "text/plain"
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"active" : "yes",
|
||||||
|
"name" : "work1k",
|
||||||
|
"path" : "work1k_wasm.so",
|
||||||
|
"port" : 10000,
|
||||||
|
"argsize" : 1,
|
||||||
|
"http-req-headers" : [ ],
|
||||||
|
"http-req-content-type" : "text/plain",
|
||||||
|
"http-req-size": 1200,
|
||||||
|
"http-resp-headers" : [ ],
|
||||||
|
"http-resp-size" : 1200,
|
||||||
|
"http-resp-content-type" : "text/plain"
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"active" : "yes",
|
||||||
|
"name" : "work1m",
|
||||||
|
"path" : "work1m_wasm.so",
|
||||||
|
"port" : 10000,
|
||||||
|
"argsize" : 1,
|
||||||
|
"http-req-headers" : [ ],
|
||||||
|
"http-req-content-type" : "text/plain",
|
||||||
|
"http-req-size": 1048576,
|
||||||
|
"http-resp-headers" : [ ],
|
||||||
|
"http-resp-size" : 1048776,
|
||||||
|
"http-resp-content-type" : "text/plain"
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define MAX_BUF 102400
|
||||||
|
|
||||||
|
//__attribute__((optnone)) int
|
||||||
|
int
|
||||||
|
main(void)
|
||||||
|
{
|
||||||
|
char *d = malloc(MAX_BUF + 1);
|
||||||
|
int r = read(0, d, MAX_BUF);
|
||||||
|
|
||||||
|
// unsigned long long st = rdtsc(), en = 0;
|
||||||
|
// wrk();
|
||||||
|
// en = rdtsc();
|
||||||
|
|
||||||
|
// if (r <= 0) printf("%llu\n", en > st ? (en - st)/CPU_CYCS : -1);
|
||||||
|
if (r < 0) printf("E\n");
|
||||||
|
else if (r <= 1) printf("D\n");
|
||||||
|
else write(1, d, r);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define MAX_BUF 10240
|
||||||
|
|
||||||
|
//__attribute__((optnone)) int
|
||||||
|
int
|
||||||
|
main(void)
|
||||||
|
{
|
||||||
|
char *d = malloc(MAX_BUF + 1);
|
||||||
|
int r = read(0, d, MAX_BUF);
|
||||||
|
|
||||||
|
// unsigned long long st = rdtsc(), en = 0;
|
||||||
|
// wrk();
|
||||||
|
// en = rdtsc();
|
||||||
|
|
||||||
|
// if (r <= 0) printf("%llu\n", en > st ? (en - st)/CPU_CYCS : -1);
|
||||||
|
if (r < 0) printf("E\n");
|
||||||
|
else if (r <= 1) printf("D\n");
|
||||||
|
else write(1, d, r);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define MAX_BUF 1024
|
||||||
|
|
||||||
|
//__attribute__((optnone)) int
|
||||||
|
int
|
||||||
|
main(void)
|
||||||
|
{
|
||||||
|
char *d = malloc(MAX_BUF + 1);
|
||||||
|
int r = read(0, d, MAX_BUF);
|
||||||
|
|
||||||
|
// unsigned long long st = rdtsc(), en = 0;
|
||||||
|
// wrk();
|
||||||
|
// en = rdtsc();
|
||||||
|
|
||||||
|
// if (r <= 0) printf("%llu\n", en > st ? (en - st)/CPU_CYCS : -1);
|
||||||
|
if (r < 0) printf("E\n");
|
||||||
|
else if (r <= 1) printf("D\n");
|
||||||
|
else write(1, d, r);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define MAX_BUF (1024*1024*1) //1m
|
||||||
|
|
||||||
|
//__attribute__((optnone)) int
|
||||||
|
int
|
||||||
|
main(void)
|
||||||
|
{
|
||||||
|
char *d = malloc(MAX_BUF + 1);
|
||||||
|
int r = read(0, d, MAX_BUF);
|
||||||
|
|
||||||
|
// unsigned long long st = rdtsc(), en = 0;
|
||||||
|
// wrk();
|
||||||
|
// en = rdtsc();
|
||||||
|
|
||||||
|
// if (r <= 0) printf("%llu\n", en > st ? (en - st)/CPU_CYCS : -1);
|
||||||
|
if (r < 0) printf("E\n");
|
||||||
|
else if (r <= 1) printf("D\n");
|
||||||
|
else write(1, d, r);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in new issue