newLISP in a browser in MS edge

Q&A's, tips, howto's
Locked
HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

newLISP in a browser in MS edge

Post by HPW »

Hello,

Still have no win 10 system, so maybe someone can answer this question:

Does 'newLISP in a browser' run on MS win 10 browser edge?

Maybe of interest:

https://blogs.windows.com/msedgedev/201 ... soft-edge/

Regards
Hans-Peter

kosh
Posts: 72
Joined: Sun Sep 13, 2009 5:38 am
Location: Japan
Contact:

Re: newLISP in a browser in MS edge

Post by kosh »

HPW wrote:Does 'newLISP in a browser' run on MS win 10 browser edge?
Yes. newlisp-js will works fine on Microsoft Edge. I have Windows 10 Insider Preview 32-bit.

HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Re: newLISP in a browser in MS edge

Post by HPW »

Thanks kosh for the info.
Maybe you can try the Benchmark and tell us the result.

Regards
Hans-Peter

kosh
Posts: 72
Joined: Sun Sep 13, 2009 5:38 am
Location: Japan
Contact:

Re: newLISP in a browser in MS edge

Post by kosh »

I have no idea about How to benchmarking newlisp-js ...

So I tried run "Merge sort benchmark" on newlisp-js.

http://www.newlisp.org/index.cgi?page=M ... tBenchmark
http://www.newlisp.org/newlisp-js/

Code: Select all

;; try 10 times, and take those avarage
(div (time (dotimes (i 3000)  (mergesort numbers)) 10) 10)
Machine Spec are:

- Windows 10 32-bit Intel Core2 Duo CPU L9300 1.60GHz
- Windows 7 64bit AMD Phenom II X6 1065T 2.9GHz
- Mac OSX 64-bit 1.7 GHz Intel Core i5

Code: Select all

- Win 10 MS Edge:         7510.2 ms
- Win 10 IE 11:         160501.7 ms
- Win 10 Chrome 46:       6958.8 ms

- Win 7 Chrome 46:        3449.1 ms
- Win 7 Firefox 41:       2728.1 ms

- OSX Safari:             2815.5 ms
- OSX Chrome 46:          3493.8 ms
- OSX Firefox DevEdition: 2901.6 ms

HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Re: newLISP in a browser in MS edge

Post by HPW »

From the "newlisp in a browser" thread:

Code: Select all

(module "qa-bench")
Paste it into the left window and click eval.

Regards
Hans-Peter

kosh
Posts: 72
Joined: Sun Sep 13, 2009 5:38 am
Location: Japan
Contact:

Re: newLISP in a browser in MS edge

Post by kosh »

Thanks. I tried taking benchmark again.

Windows 10 32-bit Intel Core2 Duo CPU L9300 1.60GHz

Code: Select all

Microsoft  Edge

>>>>> total time: 4606 
>>>>> Performance ratio: 7.70 (1.0 on MacOSX 10.9, 2.3GHz Intel Core i5, newLISP v10.6.0-64-bit)

Code: Select all

Internet Explorer 11

>>>>> total time: 14046 
>>>>> Performance ratio:23.05 (1.0 on MacOSX 10.9, 2.3GHz Intel Core i5, newLISP v10.6.0-64-bit)

Code: Select all

Google Chrome 47

>>>>> total time: 5737 
>>>>> Performance ratio: 9.54 (1.0 on MacOSX 10.9, 2.3GHz Intel Core i5, newLISP v10.6.0-64-bit)

HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Re: newLISP in a browser in MS edge

Post by HPW »

Thanks for the Benchmark, interesting that edge is faster than chrome for you.
But Chrome 47? For me there is only Chrome 46 stated as current.

Regards
Hans-Peter

kosh
Posts: 72
Joined: Sun Sep 13, 2009 5:38 am
Location: Japan
Contact:

Re: newLISP in a browser in MS edge

Post by kosh »

HPW wrote:But Chrome 47? For me there is only Chrome 46 stated as current.
for details, I use Chrome 47.0.2526.16 beta-m.

http://googlechromereleases.blogspot.jp ... te_15.html

abaddon1234
Posts: 21
Joined: Mon Sep 14, 2015 3:09 am

Re: newLISP in a browser in MS edge

Post by abaddon1234 »


Locked