commit a4e274316cc76986cd5c3457cb8877d5d2c8cbff Author: Bigsk Date: Sun Jul 18 14:39:21 2021 +0800 First time update,with the first test's record diff --git a/code/R.R b/code/R.R new file mode 100644 index 0000000..3de10e6 --- /dev/null +++ b/code/R.R @@ -0,0 +1,18 @@ +#!/usr/bin/env Rscript +calc <- function(n){ + if (n <= 1){ + return(n) + }else{ + return(calc(n - 1) + calc(n - 2)) + } +} +main <- function(){ + ts=proc.time() + for ( i in seq(from = 0, to = 29, by = 1)){ + calc(i) + #print(calc(i)) + } + tf=proc.time() + print(paste0("[",(tf-ts)[3][[1]],"]")) +} +main() \ No newline at end of file diff --git a/code/c.c b/code/c.c new file mode 100644 index 0000000..1a71114 --- /dev/null +++ b/code/c.c @@ -0,0 +1,22 @@ +#include +#include + +long calc(long n){ + if (n <= 1){ + return n; + }else{ + return (calc(n - 1) + calc(n - 2)); + } +} +int main(){ + struct timeval tv1, tv2; + gettimeofday(&tv1, NULL); + for (int i=0;i<30;i++){ + calc(i); + //printf("%ld\n",calc(i)); + //fflush(stdout); + } + gettimeofday(&tv2, NULL); + printf("[%f]\n",(double)(tv2.tv_sec-tv1.tv_sec)+(double)(tv2.tv_usec-tv1.tv_usec)/1000000); + return 0; +} diff --git a/code/cpp.cpp b/code/cpp.cpp new file mode 100644 index 0000000..db18d0d --- /dev/null +++ b/code/cpp.cpp @@ -0,0 +1,23 @@ +#include +#include + +using namespace std; + +long calc(long n){ + if (n <= 1){ + return n; + }else{ + return (calc(n - 1) + calc(n - 2)); + } +} +int main(){ + struct timeval tv1, tv2; + gettimeofday(&tv1, NULL); + for (int i=0;i<30;i++){ + //cout< \ No newline at end of file diff --git a/code/python.py b/code/python.py new file mode 100644 index 0000000..0672d1f --- /dev/null +++ b/code/python.py @@ -0,0 +1,13 @@ +import time +def calc(n): + if n <= 1: + return n + else: + return (calc(n - 1) + calc(n - 2)) +def main(): + ts=time.time() + for i in range(0,30): + #print(calc(i)) + calc(i) + print("[{}]".format(time.time()-ts)) +main() \ No newline at end of file diff --git a/code/ruby.rb b/code/ruby.rb new file mode 100644 index 0000000..767bf86 --- /dev/null +++ b/code/ruby.rb @@ -0,0 +1,19 @@ +require "time" +def calc(n) + if n <= 1 + return n + else + return calc(n - 1) + calc(n - 2) + end +end +def main() + ts=Time.now + for i in 0..29 + #puts i + #puts calc(i) + calc(i) + end + tf=Time.now + puts "["+(tf-ts).to_s+"]" +end +main() \ No newline at end of file diff --git a/historicalRec/2021.7/code.zip b/historicalRec/2021.7/code.zip new file mode 100644 index 0000000..9747fd7 Binary files /dev/null and b/historicalRec/2021.7/code.zip differ diff --git a/historicalRec/2021.7/rec.zip b/historicalRec/2021.7/rec.zip new file mode 100644 index 0000000..cbbc098 Binary files /dev/null and b/historicalRec/2021.7/rec.zip differ diff --git a/main.py b/main.py new file mode 100644 index 0000000..d418cb9 --- /dev/null +++ b/main.py @@ -0,0 +1,237 @@ +import os,threading,shutil,json,time + +source="code" +def testc(): + shutil.copy(source+"/c.c","tmp/c.c") + time.sleep(1) + os.popen("gcc tmp/c.c -o tmp/testc") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("./tmp/testc").read())[0] + print("C completed once used {}s".format(value)) + result.append(value) + print("C completed all tasks used {}s".format(sum(result))) + with open("rec/c.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testcpp(): + shutil.copy(source+"/cpp.cpp","tmp/cpp.cpp") + time.sleep(1) + os.popen("g++ tmp/cpp.cpp -o tmp/testcpp") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("./tmp/testcpp").read())[0] + print("C++ completed once used {}s".format(value)) + result.append(value) + print("C++ completed all tasks used {}s".format(sum(result))) + with open("rec/cpp.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testjava(): + shutil.copy(source+"/java.java","tmp/java.java") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("java tmp/java.java").read())[0] + print("Java completed once used {}s".format(value)) + result.append(value) + print("Java completed all tasks used {}s".format(sum(result))) + with open("rec/java.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testgo(): + shutil.copy(source+"/go.go","tmp/go.go") + time.sleep(1) + os.popen("go build -o tmp/go tmp/go.go") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("./tmp/go").read())[0] + print("Go completed once used {}s".format(value)) + result.append(value) + print("Go completed all tasks used {}s".format(sum(result))) + with open("rec/go.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testjs(): + shutil.copy(source+"/javascript.js","tmp/javascript.js") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("node tmp/javascript.js").read())[0] + print("Node completed once used {}s".format(value)) + result.append(value) + print("Node completed all tasks used {}s".format(sum(result))) + with open("rec/node.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testlua(): + shutil.copy(source+"/lua.lua","tmp/lua.lua") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("lua tmp/lua.lua").read())[0] + print("Lua completed once used {}s".format(value)) + result.append(value) + print("Lua completed all tasks used {}s".format(sum(result))) + with open("rec/lua.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testlua(): + shutil.copy(source+"/lua.lua","tmp/lua.lua") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("lua tmp/lua.lua").read())[0] + print("Lua completed once used {}s".format(value)) + result.append(value) + print("Lua completed all tasks used {}s".format(sum(result))) + with open("rec/lua.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testperl(): + shutil.copy(source+"/perl.pl","tmp/perl.pl") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("perl tmp/perl.pl").read())[0] + print("Perl completed once used {}s".format(value)) + result.append(value) + print("Perl completed all tasks used {}s".format(sum(result))) + with open("rec/perl.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testphp(): + shutil.copy(source+"/php.php","tmp/php.php") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("php tmp/php.php").read())[0] + print("PHP completed once used {}s".format(value)) + result.append(value) + print("PHP completed all tasks used {}s".format(sum(result))) + with open("rec/php.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testR(): + shutil.copy(source+"/R.R","tmp/R.R") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("./tmp/R.R").read()[5:-2])[0] + print("R completed once used {}s".format(value)) + result.append(value) + print("R completed all tasks used {}s".format(sum(result))) + with open("rec/R.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testruby(): + shutil.copy(source+"/ruby.rb","tmp/ruby.rb") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("ruby tmp/ruby.rb").read())[0] + print("Ruby completed once used {}s".format(value)) + result.append(value) + print("Ruby completed all tasks used {}s".format(sum(result))) + with open("rec/ruby.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testpython2(): + shutil.copy(source+"/python.py","tmp/python2.py") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("python tmp/python2.py").read())[0] + print("Python2 completed once used {}s".format(value)) + result.append(value) + print("Python2 completed all tasks used {}s".format(sum(result))) + with open("rec/python2.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testpython3(): + shutil.copy(source+"/python.py","tmp/python3.py") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("python3 tmp/python3.py").read())[0] + print("Python3 completed once used {}s".format(value)) + result.append(value) + print("Python3 completed all tasks used {}s".format(sum(result))) + with open("rec/python3.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testpypy(): + shutil.copy(source+"/python.py","tmp/pypy.py") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("pypy tmp/pypy.py").read())[0] + print("Pypy completed once used {}s".format(value)) + result.append(value) + print("Pypy completed all tasks used {}s".format(sum(result))) + with open("rec/pypy.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def testjython(): + shutil.copy(source+"/python.py","tmp/jython.py") + time.sleep(1) + result=[] + for i in range(0,100): + value=json.loads(os.popen("jython tmp/jython.py").read())[0] + print("Jython completed once used {}s".format(value)) + result.append(value) + print("Jython completed all tasks used {}s".format(sum(result))) + with open("rec/jython.txt","a+") as fb: + fb.write(json.dumps(result)) + fb.write("\nTotally used:{} Average:{}".format(sum(result),sum(result)/len(result))) + fb.write("\n----------------\n") +def t1(): + testcpp() + testjava() + testgo() + testlua() + testjython() + testperl() + testjs() +def t2(): + testphp() + testR() + testruby() + testpython2() + testc() + testpython3() + testpypy() + testperl() +def main(): + os.makedirs("rec",exist_ok=True) + try: + shutil.rmtree("tmp") + except: + pass + os.makedirs("tmp") + #threading.Thread(target=t1).start() + #threading.Thread(target=t2).start() + input() + testgo() + testlua() + testjython() + testperl() + testjs() +main()