Catalyst 将可切换显卡的应用程序列表存储在哪里?

Catalyst 将可切换显卡的应用程序列表存储在哪里?

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

更新

这不是我的机器,而是我想要做的一个例子:带有 iexplore.exe 的列表就是我想要的。当我单击“浏览”并选择任何 exe(例如 Portal2.exe)时,什么都没有发生。列表是空的,所以我无法为 Portal2.exe 设置模式。

在此处输入图片描述

答案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>

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

问候

相关内容