configure_cpu.ui 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>ConfigureCpu</class>
  4. <widget class="QWidget" name="ConfigureCpu">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>400</width>
  10. <height>321</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Form</string>
  15. </property>
  16. <layout class="QVBoxLayout">
  17. <item>
  18. <layout class="QVBoxLayout">
  19. <item>
  20. <widget class="QGroupBox">
  21. <property name="title">
  22. <string>General</string>
  23. </property>
  24. <layout class="QVBoxLayout">
  25. <item>
  26. <widget class="QWidget" name="widget_accuracy" native="true">
  27. <layout class="QHBoxLayout" name="layout_accuracy">
  28. <item>
  29. <widget class="QLabel" name="label_accuracy">
  30. <property name="text">
  31. <string>Accuracy:</string>
  32. </property>
  33. </widget>
  34. </item>
  35. <item>
  36. <widget class="QComboBox" name="accuracy">
  37. <item>
  38. <property name="text">
  39. <string>Accurate</string>
  40. </property>
  41. </item>
  42. <item>
  43. <property name="text">
  44. <string>Unsafe</string>
  45. </property>
  46. </item>
  47. <item>
  48. <property name="text">
  49. <string>Enable Debug Mode</string>
  50. </property>
  51. </item>
  52. </widget>
  53. </item>
  54. </layout>
  55. </widget>
  56. </item>
  57. <item>
  58. <widget class="QLabel" name="label_recommended_accuracy">
  59. <property name="text">
  60. <string>We recommend setting accuracy to &quot;Accurate&quot;.</string>
  61. </property>
  62. <property name="wordWrap">
  63. <bool>false</bool>
  64. </property>
  65. </widget>
  66. </item>
  67. </layout>
  68. </widget>
  69. </item>
  70. </layout>
  71. </item>
  72. <item>
  73. <layout class="QVBoxLayout">
  74. <item>
  75. <widget class="QGroupBox" name="unsafe_group">
  76. <property name="title">
  77. <string>Unsafe CPU Optimization Settings</string>
  78. </property>
  79. <layout class="QVBoxLayout">
  80. <item>
  81. <widget class="QLabel" name="label_accuracy_description">
  82. <property name="text">
  83. <string>These settings reduce accuracy for speed.</string>
  84. </property>
  85. <property name="wordWrap">
  86. <bool>false</bool>
  87. </property>
  88. </widget>
  89. </item>
  90. <item>
  91. <widget class="QCheckBox" name="cpuopt_unsafe_unfuse_fma">
  92. <property name="toolTip">
  93. <string>
  94. &lt;div&gt;This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support.&lt;/div&gt;
  95. </string>
  96. </property>
  97. <property name="text">
  98. <string>Unfuse FMA (improve performance on CPUs without FMA)</string>
  99. </property>
  100. </widget>
  101. </item>
  102. <item>
  103. <widget class="QCheckBox" name="cpuopt_unsafe_reduce_fp_error">
  104. <property name="toolTip">
  105. <string>
  106. &lt;div&gt;This option improves the speed of some approximate floating-point functions by using less accurate native approximations.&lt;/div&gt;
  107. </string>
  108. </property>
  109. <property name="text">
  110. <string>Faster FRSQRTE and FRECPE</string>
  111. </property>
  112. </widget>
  113. </item>
  114. <item>
  115. <widget class="QCheckBox" name="cpuopt_unsafe_ignore_standard_fpcr">
  116. <property name="toolTip">
  117. <string>
  118. &lt;div&gt;This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes.&lt;/div&gt;
  119. </string>
  120. </property>
  121. <property name="text">
  122. <string>Faster ASIMD instructions (32 bits only)</string>
  123. </property>
  124. </widget>
  125. </item>
  126. <item>
  127. <widget class="QCheckBox" name="cpuopt_unsafe_inaccurate_nan">
  128. <property name="toolTip">
  129. <string>
  130. &lt;div&gt;This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions.&lt;/div&gt;
  131. </string>
  132. </property>
  133. <property name="text">
  134. <string>Inaccurate NaN handling</string>
  135. </property>
  136. </widget>
  137. </item>
  138. <item>
  139. <widget class="QCheckBox" name="cpuopt_unsafe_fastmem_check">
  140. <property name="toolTip">
  141. <string>
  142. &lt;div&gt;This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory.&lt;/div&gt;
  143. </string>
  144. </property>
  145. <property name="text">
  146. <string>Disable address space checks</string>
  147. </property>
  148. </widget>
  149. </item>
  150. </layout>
  151. </widget>
  152. </item>
  153. </layout>
  154. </item>
  155. <item>
  156. <spacer name="verticalSpacer">
  157. <property name="orientation">
  158. <enum>Qt::Vertical</enum>
  159. </property>
  160. <property name="sizeHint" stdset="0">
  161. <size>
  162. <width>20</width>
  163. <height>40</height>
  164. </size>
  165. </property>
  166. </spacer>
  167. </item>
  168. <item>
  169. <widget class="QLabel" name="label_disable_info">
  170. <property name="text">
  171. <string>CPU settings are available only when game is not running.</string>
  172. </property>
  173. <property name="wordWrap">
  174. <bool>true</bool>
  175. </property>
  176. </widget>
  177. </item>
  178. </layout>
  179. </widget>
  180. <resources/>
  181. <connections/>
  182. </ui>