aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/surface/completion_queue_benchmark.c
blob: 5360d7c6c383b5e60582d3ede4747d3a1f4724d0 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 *
 * Copyright 2014, Google Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *     * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *     * Neither the name of Google Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include "src/core/surface/completion_queue.h"

#include <math.h>
#include <stdio.h>

#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
#include <grpc/support/thd.h>
#include <grpc/support/time.h>

typedef struct test_thread_options {
  gpr_event on_started;
  gpr_event *start;
  gpr_event on_finished;
  grpc_completion_queue *cc;
  int iterations;
} test_thread_options;

static void producer_thread(void *arg) {
  test_thread_options *opt = arg;
  int i;

  gpr_event_set(&opt->on_started, (void *)(gpr_intptr) 1);
  GPR_ASSERT(gpr_event_wait(opt->start, gpr_inf_future));

  for (i = 0; i < opt->iterations; i++) {
    grpc_cq_begin_op(opt->cc, NULL, GRPC_WRITE_ACCEPTED);
    grpc_cq_end_write_accepted(opt->cc, (void *)(gpr_intptr) 1, NULL, NULL,
                               NULL, GRPC_OP_OK);
  }

  gpr_event_set(&opt->on_finished, (void *)(gpr_intptr) 1);
}

static void consumer_thread(void *arg) {
  test_thread_options *opt = arg;
  grpc_event *ev;

  gpr_event_set(&opt->on_started, (void *)(gpr_intptr) 1);
  GPR_ASSERT(gpr_event_wait(opt->start, gpr_inf_future));

  for (;;) {
    ev = grpc_completion_queue_next(opt->cc, gpr_inf_future);
    switch (ev->type) {
      case GRPC_WRITE_ACCEPTED:
        break;
      case GRPC_QUEUE_SHUTDOWN:
        gpr_event_set(&opt->on_finished, (void *)(gpr_intptr) 1);
        return;
      default:
        gpr_log(GPR_ERROR, "Invalid event received: %d", ev->type);
        abort();
    }
    grpc_event_finish(ev);
  }
}

double ops_per_second(int consumers, int producers, int iterations) {
  test_thread_options *options =
      gpr_malloc((producers + consumers) * sizeof(test_thread_options));
  gpr_event start = GPR_EVENT_INIT;
  grpc_completion_queue *cc = grpc_completion_queue_create();
  int i;
  gpr_timespec t_start, t_end, t_delta;

  /* start all threads: they will wait for phase1 */
  for (i = 0; i < producers + consumers; i++) {
    gpr_thd_id id;
    gpr_event_init(&options[i].on_started);
    gpr_event_init(&options[i].on_finished);
    options[i].start = &start;
    options[i].cc = cc;
    options[i].iterations = iterations;
    GPR_ASSERT(gpr_thd_new(&id,
                           i < producers ? producer_thread : consumer_thread,
                           options + i, NULL));
    gpr_event_wait(&options[i].on_started, gpr_inf_future);
  }

  /* start the benchmark */
  t_start = gpr_now();
  gpr_event_set(&start, (void *)(gpr_intptr) 1);

  /* wait for producers to finish */
  for (i = 0; i < producers; i++) {
    GPR_ASSERT(gpr_event_wait(&options[i].on_finished, gpr_inf_future));
  }

  /* in parallel, we shutdown the completion channel - all events should still
     be consumed */
  grpc_completion_queue_shutdown(cc);

  /* join all threads */
  for (i = producers; i < producers + consumers; i++) {
    GPR_ASSERT(gpr_event_wait(&options[i].on_finished, gpr_inf_future));
  }
  t_end = gpr_now();

  /* destroy the completion channel */
  grpc_completion_queue_destroy(cc);

  gpr_free(options);

  t_delta = gpr_time_sub(t_end, t_start);
  return (t_delta.tv_sec + 1e-9 * t_delta.tv_nsec) / (producers * iterations);
}

double ops_per_second_top(int consumers, int producers) {
  return ops_per_second(consumers, producers, 1000000 / producers);
}

int main(void) {
  const int counts[] = {1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 20, 24, 32, 40, 64};
  const int ncounts = sizeof(counts) / sizeof(*counts);
  int i, j;

  printf("\"\",");
  for (i = 0; i < ncounts; i++) {
    int producers = counts[i];
    printf("%d%s", producers, i == ncounts - 1 ? "\n" : ",");
  }

  for (j = 0; j < ncounts; j++) {
    int consumers = counts[j];
    printf("%d,", consumers);
    for (i = 0; i < ncounts; i++) {
      int producers = counts[i];
      printf("%f%s", ops_per_second_top(consumers, producers),
             i == ncounts - 1 ? "\n" : ",");
      fflush(stdout);
    }
  }

  return 0;
}