Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
optimize ram usage
03-17-2013, 04:23 PM
Post: #16
RE: optimize ram usage
Masato: you can download Microsoft Visual Studio 2012 for Desktop (you'll probably also need Microsoft Visual C++ 2010 though.) This would allow you to compile. You'll also need to download and install the DirectX SDK. Luckily these things are all free.

With that, you can open the Windows/PPSSPP.sln file, and select "Debug" and run. It'll be a lot slower, and the log file will be huge, but it'll give a lot more information too.

xsacha: I don't know about all mobile devices, but anything running Linux and desktops should use memory committing. For example, even though we allocate 8MB for kernel ram (which is used only for savedata icons iirc), most of that is never used, and so it is never committed and takes nothing but address space (it is essentially free.) Depending on the tool, it won't even be counted (which is correct.)

Same with the jit cache, it's probably only reporting the committed pages.

Reading/writing memory still isn't free, though. For example, we could keep full doubles of all textures (to detect changes) - which would fix a bunch of texture bugs - but this would also make it a lot slower. More ram doesn't always equal more faster.

-[Unknown]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
optimize ram usage - hardcode212 - 03-16-2013, 11:28 AM
RE: optimize ram usage - Masato - 03-16-2013, 11:46 AM
RE: optimize ram usage - hardcode212 - 03-16-2013, 11:56 AM
RE: optimize ram usage - Masato - 03-16-2013, 12:12 PM
RE: optimize ram usage - thedicemaster - 03-16-2013, 02:45 PM
RE: optimize ram usage - Masato - 03-16-2013, 09:13 PM
RE: optimize ram usage - Mikian - 03-17-2013, 12:21 AM
RE: optimize ram usage - Henrik - 03-17-2013, 10:19 AM
RE: optimize ram usage - Masato - 03-17-2013, 12:45 PM
RE: optimize ram usage - VIRGIN KLM - 03-17-2013, 01:11 PM
RE: optimize ram usage - Masato - 03-17-2013, 01:21 PM
RE: optimize ram usage - VIRGIN KLM - 03-17-2013, 01:36 PM
RE: optimize ram usage - Henrik - 03-17-2013, 01:49 PM
RE: optimize ram usage - Masato - 03-17-2013, 01:54 PM
RE: optimize ram usage - xsacha - 03-17-2013, 02:04 PM
RE: optimize ram usage - [Unknown] - 03-17-2013 04:23 PM
RE: optimize ram usage - Henrik - 03-17-2013, 04:23 PM
RE: optimize ram usage - acceleron - 03-17-2013, 07:17 PM
RE: optimize ram usage - Henrik - 03-18-2013, 07:50 AM
RE: optimize ram usage - Masato - 03-17-2013, 09:40 PM
RE: optimize ram usage - acceleron - 03-18-2013, 05:53 PM
RE: optimize ram usage - skyfor - 03-25-2013, 08:27 AM
RE: optimize ram usage - Henrik - 03-25-2013, 09:39 AM

Forum Jump: