cpp/matlab/frequent_items_merge_time.m (32 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. clf; fi_str_cp_sh=load('../results/frequent_items_merge_timing_string_lgk10_zipf11_short_copy.tsv'); fi_str_mv_sh=load('../results/frequent_items_merge_timing_string_lgk10_zipf11_short_move.tsv'); fi_str_cp_ln=load('../results/frequent_items_merge_timing_string_lgk10_zipf11_long_copy.tsv'); fi_str_mv_ln=load('../results/frequent_items_merge_timing_string_lgk10_zipf11_long_move.tsv'); hold on; semilogx(fi_str_cp_sh(:,1), fi_str_cp_sh(:,5), 'linewidth', 2); semilogx(fi_str_mv_sh(:,1), fi_str_mv_sh(:,5), 'linewidth', 2); semilogx(fi_str_cp_ln(:,1), fi_str_cp_ln(:,5), 'linewidth', 2); semilogx(fi_str_mv_ln(:,1), fi_str_mv_ln(:,5), 'linewidth', 2); set(gca, 'fontsize', 16); title 'Merge time of frequent items sketch<std::string>(10)' xlabel 'stream size' ylabel 'time, nanoseconds' legend('zipf 1.1 copy short strings', 'zipf 1.1 move short strings', 'zipf 1.1 copy long strings', 'zipf 1.1 move long strings', 'location', 'northwest'); grid minor on