Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d5b1640
No public description
xnnpack-bot Dec 16, 2024
e4dda15
Fix formatting style and add per-file licensing headers.
gonnet Dec 17, 2024
4e80ca2
Add basic CI workflows.
gonnet Dec 17, 2024
39df650
Fix `cpuinfo` include path.
gonnet Dec 17, 2024
ba98306
Use the `c11` built-in atomic functions directly.
gonnet Dec 18, 2024
93fcce9
Use the `c11` built-in atomic functions directly.
xnnpack-bot Dec 18, 2024
c02f903
Use the `c11` built-in atomic functions directly.
gonnet Dec 20, 2024
847fb99
Don't `yield`-loop before waiting on a condition.
gonnet Dec 20, 2024
c90640f
Wrap `#define _GNU_SOURCE` in an `#ifndef` in case it has already bee…
gonnet Jan 9, 2025
b4fb4eb
Restore the LICENSE file.
xnnpack-bot Jan 10, 2025
7bbea58
Add `pthreadpool_parallelize_Xd_tile_Yd_dynamic` parallelization stra…
gonnet Jan 15, 2025
e146941
Clean up the unused `num_tiles` in the params for the new `dynamic` s…
gonnet Jan 16, 2025
8d1751b
Use range-wise traversal in the `thread_parallelize_*_dynamic` strate…
gonnet Feb 5, 2025
3489b62
Use `c11`'s `aligned_alloc` instead of `posix_memalign`.
gonnet Feb 5, 2025
2f0931e
Use `c11`'s `aligned_alloc` instead of `posix_memalign`.
cantonios Feb 5, 2025
d647393
Don't just assume that we have `aligned_alloc` or `posix_memalign`, b…
gonnet Feb 7, 2025
f94ab76
Fix bug in `thread_parallelize_2d_tile_2d_dynamic` when `tile_range_j…
gonnet Feb 7, 2025
5703882
Use posix_memalign on Hexagon
dsharletg Feb 14, 2025
b1aee19
Remove crosstool_top from config_settings for apple platforms
xnnpack-bot Feb 28, 2025
bd09d5c
Add `4d_tile_2d_dynamic` to `pthreadpool`.
gonnet Mar 14, 2025
4e1831c
Add missing shims for `pthreadpool_parallelize_4d_tile_2d_dynamic` an…
gonnet Mar 14, 2025
b924477
Remove unused variables.
gonnet Mar 19, 2025
706a8ea
Make pthreadpool symbols weak to allow customizing the behavior by re…
dsharletg Mar 24, 2025
da30a55
Mark `pthreadpool_get_threads_count` and `pthreadpool_destroy` as wea…
ezhulenev Apr 10, 2025
290ee6f
Add strong aliases to public pthreadpool functions.
alexander-shaposhnikov Apr 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Run manually to reformat a file:
# clang-format -i --style=file <file>
BasedOnStyle: Google
DerivePointerAlignment: false
Loading