Catalyst存储可切换图形的applist的位置?


8

我无法在列表中添加应用程序以手动将其设置为高性能(Radeon而非Intel HD)。当我浏览exe时,没有任何反应,列表仍然是空的。那么,也许我可以编辑一些.cfg或.ini?

UPDATE

这不是我的机器,而是我想要做的一个例子:iexplore.exe的列表就是我的意思。当我单击“浏览”并选择任何exe(例如Portal2.exe)时,没有任何反应。该列表为空,因此无法为Portal2.exe设置模式。

enter image description here


由于权限问题,有时列表不会出现(不一定是Catalyst,但通常是这样)!您是否拥有机器/软件和操作系统等的完全许可?
Dave

是的,我是管理员,UAC被关闭了。我还应该拥有多少权限?
noober

你能解释一下催化剂中应用列表的含义吗?这可能有所帮助
Dave

请参阅我的更新。我附上了截图。
noober

+1是一个更好的问题。如果你在8小时内没有答案,我会检查我的家用电脑。
Dave

Answers:


1

我一直在寻找appdata,我发现了这个:

C:\Users\user_name\AppData\Local\ATI\ACE\APL\GpuAffinities.xml

这就是xml的构建方式:

<?xml version="1.0" encoding="utf-8"?>
<customisations Content="User" Format="1">
  <applications>
    <application Title="Google Chrome" File="chrome.exe">
      <use Area="PXDynamic">HighPerfGPUAffinity</use>
    </application>
    <application Title="Microsoft® Visual Studio® 2013" File="wdexpress.exe">
      <use Area="PXDynamic">HighPerfGPUAffinity</use>
    </application>
    <application File="iw4m.exe">
      <use Area="PXDynamic">HighPerfGPUAffinity</use>
    </application>
    <application Title="Skype" File="skype.exe">
      <use Area="PXDynamic">HighPerfGPUAffinity</use>
    </application>
  </applications>
</customisations>

我没有测试它,但我想你可以简单地在那里添加你的程序!

问候

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.