Please enable below line in perfconfigstore.xml to enable app compaction and push to device in /vendor/etc/perf path. <Prop Name="vendor.appcompact.enable_app_compact" Value="true" /> <Prop Name="vendor.appcompact.full_compact_type" Value="2" /> <Prop Name="vendor.appcompact.some_compact_type" Value="2" />
时间: 2024-04-15 22:32:15 浏览: 180
InK-Compact- In-Kernel Stream Compaction and Its Application to Multi-Kernel Data Visualization on General-Purpose GPUs - 2013-计算机科学
Sure, to enable app compaction in perfconfigstore.xml and push the file to the device in /vendor/etc/perf path, you need to add the following lines:
```xml
<Prop Name="vendor.appcompact.enable_app_compact" Value="true" />
<Prop Name="vendor.appcompact.full_compact_type" Value="2" />
<Prop Name="vendor.appcompact.some_compact_type" Value="2" />
```
Once you have added these lines, save the perfconfigstore.xml file and push it to the /vendor/etc/perf path on the device.
阅读全文