Skip to content

Commit d81db7e

Browse files
committed
Remove workspace
1 parent fdddc26 commit d81db7e

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
workspace = { members = ["utilities"] }
2-
31
[package]
42
name = "phastft"
53
version = "0.1.0"

benches/benchmark_plots.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def plot_lines(data: dict[str, list], n_range: range) -> None:
6464
index=index,
6565
)
6666

67-
df.plot(kind='bar', linewidth=3, rot=0)
67+
df.plot(linewidth=3, rot=0)
6868

6969
plt.xticks(fontsize=9, rotation=-45)
7070
plt.yticks(fontsize=9)
@@ -73,7 +73,7 @@ def plot_lines(data: dict[str, list], n_range: range) -> None:
7373
plt.legend(loc='best')
7474
plt.tight_layout()
7575
plt.savefig("benchmarks_bar_plot.png", dpi=600)
76-
# plt.show()
76+
plt.show()
7777

7878

7979
# Source: https://stackoverflow.com/a/1094933
@@ -104,7 +104,7 @@ def main():
104104
all_data = {}
105105

106106
for lib in lib_names:
107-
data = build_and_clean_data("benchmark-data.2024.02.02.16-45-50", n_range, lib)
107+
data = build_and_clean_data("benchmark-data.2024.02.02.19-10-51", n_range, lib)
108108
all_data[lib] = data
109109

110110
assert len(all_data["rustfft"]) == len(all_data["fftw3"]) == len(all_data["phastft"])

0 commit comments

Comments
 (0)