diff --git a/data/main.py b/data/main.py index 44110b5..5d7e5d5 100644 --- a/data/main.py +++ b/data/main.py @@ -5,6 +5,7 @@ import numpy as np tamanho_buffer = ["0.064", "0.128", "0.256", "0.512", "1", "2", "4", "8"] tempo_execucao_udp = [0.28, 0.24, 0.19, 0.17, 0.15, 0.14, 0.12, 0.09] tempo_execucao_tcp = [0.40,0.23,0.20,0.18,0.17,0.16,0.16,0.13] +tempo_execucao_pipe = [0.01,0.01,0.01,0.01,0.01,0.01,0.012,0.01] tempo_execucao_unix = [0.22,0.19,0.19,0.12,0.15,0.10,0.08,0.05] tempo_execucao_udp.reverse() @@ -13,6 +14,7 @@ tempo_execucao_unix.reverse() # Cria o gráfico de linha plt.plot(tamanho_buffer, tempo_execucao_tcp, marker='o', linestyle='-', label='Socket TCP') +plt.plot(tamanho_buffer, tempo_execucao_pipe, marker='o', linestyle='-', label='Pipe Connection') plt.plot(tamanho_buffer, tempo_execucao_unix, marker='o', linestyle='-', label='Socket UNIXDOMAIN') plt.plot(tamanho_buffer, tempo_execucao_udp, marker='o', linestyle='-', label='Socket UDP') diff --git a/graphics/full_with_pipe.png b/graphics/full_with_pipe.png new file mode 100644 index 0000000..cdb8461 Binary files /dev/null and b/graphics/full_with_pipe.png differ