English Amiga Board


Go Back   English Amiga Board > News

 
 
Thread Tools
Old 30 June 2016, 17:21   #161
Geijer
Oldtimer
 
Geijer's Avatar
 
Join Date: Nov 2010
Location: VXO / Sweden
Posts: 153
Quote:
Originally Posted by Schoenfeld View Post
Sysinfo 3.24 shows different speed results if you start it once, then move a few windows or do "avail flush" and restart it. I guess that the speed test code is depending very much on cache line alignment: If the core routine can take advantage of a full burst (4 longwords), it's faster and shows a higher value, although the machine is identical.

Is it possible to re-align the routine in fastmem to an address that has the lower 4 bits =0? Or even "configurable", so the routine is shifted in memory by 1-3 long words and the four values of four speed runs are shown in some debug window? Would be great to have the speed rating reproducable.

Another tool I use in accelerator development is "Bustest". Sometimes I think that an additional "speed" button on a memory list entry would be nice. Well, if you want additional items on your todo list ;-)

Jens
Yes, "LoadSeg" and AllocMem doesn't align to large enought block, have some code that tries to solve that but found problems with the CPU detection so it is not finished yet.

Interesting suggestion adding the possibility to run the code at any memory list entry. Will experiment with that while solving the alignment. Is it really neccessary to have it configurable, don't you always want it aligned if burstmode is supported?
Geijer is offline  
Old 30 June 2016, 17:55   #162
emufan
Registered User
 
Join Date: Feb 2012
Location: #DrainTheSwamp
Posts: 4,545
can we have 1 or two more columns, in the speed comparisions area?
when running the speed test in winuae, some numbers of the results are purged,
since it is only 123.45 format - i would suggest 12345.67 .
the same for Mips/MFlops - you could print MFlops below Mips line.

#1) are those beta version public? i still use 4.0 made in 2012?!
-> found the beta

Last edited by emufan; 30 June 2016 at 19:59.
emufan is offline  
Old 01 July 2016, 10:47   #163
Geijer
Oldtimer
 
Geijer's Avatar
 
Join Date: Nov 2010
Location: VXO / Sweden
Posts: 153
Quote:
Originally Posted by emufan View Post
can we have 1 or two more columns, in the speed comparisions area?
when running the speed test in winuae, some numbers of the results are purged,
since it is only 123.45 format - i would suggest 12345.67 .
the same for Mips/MFlops - you could print MFlops below Mips line.

#1) are those beta version public? i still use 4.0 made in 2012?!
-> found the beta
Unfortunately it's not that simple, the values are overflowed/truncated in calculations. I'm working on it.

(Newer beta)
Geijer is offline  
Old 01 July 2016, 16:10   #164
emufan
Registered User
 
Join Date: Feb 2012
Location: #DrainTheSwamp
Posts: 4,545
Quote:
Originally Posted by Geijer View Post
Unfortunately it's not that simple, the values are overflowed/truncated in calculations. I'm working on it.

(Newer beta)
that sounds good. thanks
emufan is offline  
Old 01 August 2016, 04:57   #165
B14ck W01f
m68k all the way
 
Join Date: Aug 2011
Location: Koalaland
Posts: 523
I hope that this v4.0 release actually works on my 1084S-D2 monitor because it cracks the shits when I try to run the earlier release that is sitting on the A1200 hard drive.
B14ck W01f is offline  
Old 08 October 2016, 23:12   #166
walterg74
 
Posts: n/a
Quote:
Originally Posted by PortuguesePilot View Post
Here: Uploaded it for you. Hope I'm not doing anything wrong...

http://www.filedropper.com/appsysinfov40
Hi, any chance you can re-up this? Is it best t use this one or the last original version released before this?
 
Old 10 October 2016, 11:21   #167
Geijer
Oldtimer
 
Geijer's Avatar
 
Join Date: Nov 2010
Location: VXO / Sweden
Posts: 153
Quote:
Originally Posted by walterg74 View Post
Hi, any chance you can re-up this? Is it best t use this one or the last original version released before this?
Unfortunately I don't have the license required to distribute a adf version (setpatch etc. is required for compatibility).

I've been in contact with Cloanto and there is a solution in the works.

Last edited by Geijer; 10 October 2016 at 11:22. Reason: spelling
Geijer is offline  
Old 10 October 2016, 15:02   #168
walterg74
 
Posts: n/a
Quote:
Originally Posted by Geijer View Post
Unfortunately I don't have the license required to distribute a adf version (setpatch etc. is required for compatibility).

I've been in contact with Cloanto and there is a solution in the works.
Hi thanks for replying! Not sure what you mean about the license? Anyne can download off the author's site. I just don't know how to make a proper adf, which is why I was aksing if someone can upload it again as the previous link is broken.
 
Old 10 October 2016, 15:57   #169
Geijer
Oldtimer
 
Geijer's Avatar
 
Join Date: Nov 2010
Location: VXO / Sweden
Posts: 153
Quote:
Originally Posted by walterg74 View Post
Hi thanks for replying! Not sure what you mean about the license? Anyne can download off the author's site. I just don't know how to make a proper adf, which is why I was aksing if someone can upload it again as the previous link is broken.
I own the rights to SysInfo but to make a proper ADF that will work on "all" amigas you need to include tools from the official Workbench disks like SetPatch. That's why I'm currently not able distribute an official SysInfo ADF.

I have done some testing and have a solution to make an official SysInfo ADF but need to solve the license issue This is how the Startup-Sequence currently looks like if you want to make one yourself. SetPatch_1x is C:SetPatch from a 1.3 installation and SetPatch_2x+ is the latest available one. SetPatch is required for SysInfo to work as expected on many expanded Amigas.

Code:
Echo ""
Version >NIL: 36 20
IF WARN
	Echo "	Running on Kickstart 1.x..."
	C:SetPatch_1x >NIL:
Else
	Version >NIL: 45 20
	IF WARN
		Echo "	Running on Kickstart 2.x, 3.0 or 3.1..."
		C:SetPatch_2x+ QUIET
	Else
		Echo "	Running on 3.X or newer..."
		C:SetPatch_2x+ NOROMUPDATE QUIET
	EndIF
EndIF

Assign T: RAM:

SYS:SysInfo/SysInfo
As I said, I am working with Cloanto, that owns the rights to the "Workbench" files, on how to solve this.

Last edited by Geijer; 10 October 2016 at 17:20. Reason: spelling, again
Geijer is offline  
Old 11 October 2016, 15:04   #170
idrougge
Registered User
 
Join Date: Sep 2007
Location: Stockholm
Posts: 4,338
I don't think any previous software makers, be they ASDG, Haage & Partner or magazine publishers, have felt the need to ask Cloanto or Commodore for permission to make a bootable floppy.
idrougge is offline  
Old 11 October 2016, 17:40   #171
Locutus
Registered User
 
Join Date: Jul 2014
Location: Finland
Posts: 1,178
I'm pretty sure you could write a script that constructs a functional workbench bootdisk just by wget'ing archives from aminet/amiga.resource.cx/etc and extracting the required binaries.

Hell that might actually be a hilarious joke to actually write..........
Locutus is online now  
Old 12 October 2016, 06:19   #172
ma693541
Computer Wizard
 
ma693541's Avatar
 
Join Date: Aug 2007
Location: Ramberg/Norway
Posts: 928
Geijer, have you been looking here? Aminet or you can make some disks from here; Amiga911 Maker. Let us users build the disks if you go for the later solution.
ma693541 is offline  
Old 12 October 2016, 10:56   #173
Jope
-
 
Jope's Avatar
 
Join Date: Jul 2003
Location: Helsinki / Finland
Age: 43
Posts: 9,863
Quote:
Originally Posted by idrougge View Post
I don't think any previous software makers, be they ASDG, Haage & Partner or magazine publishers, have felt the need to ask Cloanto or Commodore for permission to make a bootable floppy.
They did, actually. CATS was the point of contact to get a license, I believe.
Jope is offline  
Old 12 October 2016, 11:49   #174
Superman
Super Member
 
Superman's Avatar
 
Join Date: Sep 2014
Location: Wakefield
Age: 48
Posts: 1,334
Do a search on the EAB server and ye shall find.
Superman is offline  
Old 05 February 2017, 02:02   #175
SnkBitten
Amithlon Fanatic
 
SnkBitten's Avatar
 
Join Date: Aug 2015
Location: Lexington, SC / US
Posts: 781
Maybe old news but I just discovered that ModePro promoting SysInfo to a 1024x768x8bit screenmode reports a higher score.

A4000T with WarpEngine 40Mhz and Cybervision 64/3d+scandoubler

NTSC:Hi-Res
Dhrystones 28750
Compared to A4000 1.57 times faster

ModePro promoted - Screenmode 1024x768x8bit, force Planar enabled
CVision:1024x768x8bit
Dhrystones 34919
Compared to A4000 1.91 times faster

Added the DblNTSC monitor, rebooted and ran again as SysInfo will open a DblNTSC screen if available.

DblNTSC:Hi-res no interlace
Dhrystones 28476
Compared to A4000 1.56 times faster
SnkBitten is offline  
Old 05 February 2017, 18:16   #176
zipper
Registered User
 
Join Date: Mar 2004
Location: finland
Posts: 1,838
SysInfo is using Vblank as reference afaik and gives interesting results on RTG and other screens than PAL/NTSC.
zipper is offline  
Old 05 February 2017, 23:33   #177
SnkBitten
Amithlon Fanatic
 
SnkBitten's Avatar
 
Join Date: Aug 2015
Location: Lexington, SC / US
Posts: 781
Quote:
Originally Posted by zipper View Post
SysInfo is using Vblank as reference afaik and gives interesting results on RTG and other screens than PAL/NTSC.
If that's the case I'll have to start promoting it on my real Amiga's, and WinUAE as well, as I have to promote it on Amithlon since it has no native modes.

I guess I'll use a 1024x768x8bit mode on all of them to balance the outcome as much as I can.
SnkBitten is offline  
Old 06 February 2017, 13:40   #178
daxb
Registered User
 
Join Date: Oct 2009
Location: Germany
Posts: 3,304
As you can see SysInfo isn`t a good choice. Try SysSpeed or similar program.
daxb is offline  
Old 06 February 2017, 14:28   #179
SnkBitten
Amithlon Fanatic
 
SnkBitten's Avatar
 
Join Date: Aug 2015
Location: Lexington, SC / US
Posts: 781
Quote:
Originally Posted by daxb View Post
As you can see SysInfo isn`t a good choice. Try SysSpeed or similar program.
I use SysSpeed, SysInfo and DiskSpeed for testing. SysInfo was the one I used the most back in the days comparing my A2000, then upgraded to an '020 and my A4000 '040 upgraded to a 40Mhz version later on...

I just want to find a "consistent" baseline for each app to gauge the relative performance of machines/emulations.
SnkBitten is offline  
Old 09 February 2017, 09:05   #180
Jope
-
 
Jope's Avatar
 
Join Date: Jul 2003
Location: Helsinki / Finland
Age: 43
Posts: 9,863
Quote:
Originally Posted by SnkBitten View Post
I just want to find a "consistent" baseline for each app to gauge the relative performance of machines/emulations.
.. then forget sysinfo's benchmark. :-)
Jope is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
SYSInfo Kitty New to Emulation or Amiga scene 8 22 April 2018 15:59
Picasso IV and SysInfo dannyp1 support.Hardware 2 26 January 2011 13:41
req: sysinfo onkelarie request.Apps 4 05 December 2008 00:33
SysInfo Sofware lopos2000 support.Apps 2 23 July 2005 11:48
Sysinfo ? THX1138 support.Apps 4 10 November 2003 00:08

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 21:04.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.11901 seconds with 14 queries