File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
composeApp/src/commonMain/kotlin/org/onion/diffusion/viewmodel Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 44
55本项目遵循 [ 语义化版本] ( https://semver.org/spec/v2.0.0.html ) 。
66
7+ ## v4.2.0
8+
9+ - modify: offloadToCpu && keepClipOnCpu && keepVaeOnCpu
10+
711## v4.1.0
812
913- fix: linux CXXABL1.3.13'not found problem
Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ class ChatViewModel : ViewModel() {
6060 var wtype = mutableStateOf(- 1 )
6161
6262 /* * Offload to CPU - offload model computations to CPU */
63- var offloadToCpu = mutableStateOf(false )
63+ var offloadToCpu = mutableStateOf(true )
6464
6565 /* * Keep CLIP on CPU - keep CLIP model on CPU */
66- var keepClipOnCpu = mutableStateOf(false )
66+ var keepClipOnCpu = mutableStateOf(true )
6767
6868 /* * Keep VAE on CPU - keep VAE decoder on CPU */
69- var keepVaeOnCpu = mutableStateOf(false )
69+ var keepVaeOnCpu = mutableStateOf(true )
7070
7171
7272 suspend fun selectDiffusionModelFile (): String {
Original file line number Diff line number Diff line change 11[versions ]
22agp = " 8.7.3"
3- app-version =" 4.1 .0"
3+ app-version =" 4.2 .0"
44android-compileSdk = " 35"
55android-minSdk = " 29"
66android-targetSdk = " 35"
You can’t perform that action at this time.
0 commit comments