Compare commits

...

2 Commits

Author SHA1 Message Date
tqcq
1664f69810 feat: save image 2024-10-21 02:02:54 +00:00
tqcq
247467993b feat: update cflags 2024-10-21 01:55:05 +00:00
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ LDIR=lib
BUILD=obj BUILD=obj
ODIR=src/.obj ODIR=src/.obj
CFLAGS=-I$(IDIR) -O3 #-ggdb CFLAGS+=-I$(IDIR) #-ggdb
# CXX=g++ # CXX=g++
LDFLAGS= LDFLAGS=

View File

@ -23,4 +23,5 @@ if __name__ == "__main__":
n, bins, patches = ax.hist(x, num_bins, density=False) n, bins, patches = ax.hist(x, num_bins, density=False)
ax.set_xlabel("Access time [ns]") ax.set_xlabel("Access time [ns]")
ax.set_ylabel("proportion of cases") ax.set_ylabel("proportion of cases")
plt.savefig("access.png")
plt.show() plt.show()