summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/workunits/erasure-code/plot.js
blob: bd2bba5bbadae3af8c59176092642a863b5513fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
$(function() {
    encode = [];
    if (typeof encode_vandermonde_isa != 'undefined') {
        encode.push({
	    data: encode_vandermonde_isa,
            label: "ISA, Vandermonde",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    if (typeof encode_vandermonde_jerasure != 'undefined') {
        encode.push({
	    data: encode_vandermonde_jerasure,
            label: "Jerasure Generic, Vandermonde",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    if (typeof encode_cauchy_isa != 'undefined') {
        encode.push({
	    data: encode_cauchy_isa,
            label: "ISA, Cauchy",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    if (typeof encode_cauchy_jerasure != 'undefined') {
        encode.push({
	    data: encode_cauchy_jerasure,
            label: "Jerasure, Cauchy",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    $.plot("#encode", encode, {
	xaxis: {
	    mode: "categories",
	    tickLength: 0
	},
    });

    decode = [];
    if (typeof decode_vandermonde_isa != 'undefined') {
        decode.push({
	    data: decode_vandermonde_isa,
            label: "ISA, Vandermonde",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    if (typeof decode_vandermonde_jerasure != 'undefined') {
        decode.push({
	    data: decode_vandermonde_jerasure,
            label: "Jerasure Generic, Vandermonde",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    if (typeof decode_cauchy_isa != 'undefined') {
        decode.push({
	    data: decode_cauchy_isa,
            label: "ISA, Cauchy",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    if (typeof decode_cauchy_jerasure != 'undefined') {
        decode.push({
	    data: decode_cauchy_jerasure,
            label: "Jerasure, Cauchy",
	    points: { show: true },
	    lines: { show: true },
	});
    }
    $.plot("#decode", decode, {
	xaxis: {
	    mode: "categories",
	    tickLength: 0
	},
    });

});