meccatronis commited on
Commit
6656109
·
verified ·
1 Parent(s): 4b2730a

Upload config/optimization.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config/optimization.json +108 -0
config/optimization.json ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "profiles": {
3
+ "power_saving": {
4
+ "name": "Power Saving",
5
+ "description": "Optimize for minimum power consumption and quiet operation",
6
+ "settings": {
7
+ "cpu_governor": "powersave",
8
+ "gpu_power_target": 150,
9
+ "fan_curve": "silent",
10
+ "monitoring_interval": 5.0,
11
+ "data_retention": 3600,
12
+ "disable_screen_blank": false,
13
+ "disable_power_save": false
14
+ },
15
+ "enabled": true
16
+ },
17
+ "balanced": {
18
+ "name": "Balanced",
19
+ "description": "Balance between performance and power consumption",
20
+ "settings": {
21
+ "cpu_governor": "ondemand",
22
+ "gpu_power_target": 200,
23
+ "fan_curve": "balanced",
24
+ "monitoring_interval": 2.0,
25
+ "data_retention": 7200,
26
+ "disable_screen_blank": false,
27
+ "disable_power_save": false
28
+ },
29
+ "enabled": true
30
+ },
31
+ "performance": {
32
+ "name": "Performance",
33
+ "description": "Optimize for maximum performance with adequate cooling",
34
+ "settings": {
35
+ "cpu_governor": "performance",
36
+ "gpu_power_target": 250,
37
+ "fan_curve": "performance",
38
+ "monitoring_interval": 1.0,
39
+ "data_retention": 14400,
40
+ "disable_screen_blank": true,
41
+ "disable_power_save": true
42
+ },
43
+ "enabled": true
44
+ },
45
+ "gaming": {
46
+ "name": "Gaming",
47
+ "description": "Optimize for gaming with maximum performance and cooling",
48
+ "settings": {
49
+ "cpu_governor": "performance",
50
+ "gpu_power_target": 250,
51
+ "fan_curve": "performance",
52
+ "monitoring_interval": 0.5,
53
+ "data_retention": 28800,
54
+ "disable_screen_blank": true,
55
+ "disable_power_save": true,
56
+ "priority_boost": true,
57
+ "network_optimization": true
58
+ },
59
+ "enabled": true
60
+ },
61
+ "video_editing": {
62
+ "name": "Video Editing",
63
+ "description": "Optimize for video processing and rendering tasks",
64
+ "settings": {
65
+ "cpu_governor": "performance",
66
+ "gpu_power_target": 225,
67
+ "fan_curve": "performance",
68
+ "monitoring_interval": 1.0,
69
+ "data_retention": 21600,
70
+ "disable_screen_blank": true,
71
+ "disable_power_save": true,
72
+ "memory_optimization": true
73
+ },
74
+ "enabled": true
75
+ },
76
+ "development": {
77
+ "name": "Development",
78
+ "description": "Optimize for development workloads and compilation",
79
+ "settings": {
80
+ "cpu_governor": "ondemand",
81
+ "gpu_power_target": 180,
82
+ "fan_curve": "balanced",
83
+ "monitoring_interval": 2.0,
84
+ "data_retention": 10800,
85
+ "disable_screen_blank": false,
86
+ "disable_power_save": false,
87
+ "compiler_optimization": true
88
+ },
89
+ "enabled": true
90
+ }
91
+ },
92
+ "default_profile": "balanced",
93
+ "monitoring": {
94
+ "enabled": true,
95
+ "interval": 2.0,
96
+ "max_history": 1000,
97
+ "auto_cleanup": true,
98
+ "cleanup_interval": 3600
99
+ },
100
+ "recommendations": {
101
+ "enabled": true,
102
+ "cpu_threshold": 80.0,
103
+ "memory_threshold": 80.0,
104
+ "disk_threshold": 90.0,
105
+ "gpu_temp_threshold": 80.0,
106
+ "auto_apply": false
107
+ }
108
+ }