-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvix.json
More file actions
77 lines (77 loc) · 1.68 KB
/
vix.json
File metadata and controls
77 lines (77 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "threadpool",
"namespace": "vix",
"version": "0.1.0",
"type": "library",
"language": "c++",
"standard": "c++20",
"include": "include",
"target": "vix::threadpool",
"cmake_target": "vix_threadpool",
"license": "MIT",
"description": "A modern C++20 threadpool module for Vix with task execution, futures, cancellation, priorities, timeouts, metrics, scopes, periodic tasks, and parallel algorithms.",
"keywords": [
"cpp",
"c++20",
"vix",
"threadpool",
"concurrency",
"parallelism",
"multithreading",
"executor",
"futures",
"tasks",
"cancellation",
"timeouts",
"metrics",
"parallel-for",
"parallel-map",
"parallel-reduce"
],
"deps": [],
"features": [
"ThreadPool",
"post",
"submit",
"TaskHandle",
"Future",
"Promise",
"TaskOptions",
"TaskPriority",
"CancellationToken",
"CancellationSource",
"Timeout",
"Deadline",
"TaskGroup",
"Scope",
"PeriodicTask",
"InlineExecutor",
"ThreadPoolExecutor",
"parallel_for",
"parallel_for_each",
"parallel_map",
"parallel_reduce",
"parallel_pipeline",
"metrics",
"stats"
],
"build": {
"system": "cmake",
"minimum_cmake": "3.20",
"library_type": "static",
"options": {
"VIX_THREADPOOL_BUILD_EXAMPLES": false,
"VIX_THREADPOOL_BUILD_TESTS": false,
"VIX_THREADPOOL_BUILD_BENCHMARKS": false
}
},
"repository": "https://github.com/vixcpp/threadpool",
"homepage": "https://vixcpp.com",
"documentation": "https://docs.vixcpp.com",
"authors": [
{
"name": "Gaspard Kirira",
"github": "https://github.com/GaspardKirira"
}
]
}