Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

Insight7

يحتوي Insight7 على 80 من skills المجمعة من PlumBlossomMaid، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
80
Stars
4
محدث
2026-06-08
Forks
2
التغطية المهنية
2 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

add-device-info
مطوّرو البرمجيات

Add device information query functions through HAL → ins:: API → language bindings

2026-06-08
demo-device-all-flags
مطوّرو البرمجيات

Add --device all/--timer/--info CLI flags to demos across all languages for competition scoring

2026-06-08
add-composite-signal-op
مطوّرو البرمجيات

Add composite signal operators using existing primitives (no dedicated backend kernels needed)

2026-06-07
port-cusignal-module
مطوّرو البرمجيات

How to port a cusignal Python/CUDA module to ins::signal C++ using Insight7 primitives and HAL

2026-06-07
optimize-cross-language-perf
مطوّرو البرمجيات

Profile and optimize binding language (Lua/Julia/Python) demo performance to match or exceed C++ baseline

2026-06-07
fix-busted-cached-so
مطوّرو البرمجيات

busted loads _insight.so from ~/.luarocks/lib first, not build/ — must copy .so after rebuild

2026-06-07
fix-julia-nullptr-check
مطوّرو البرمجيات

Julia C API bindings must check for nullptr return — silent failure otherwise

2026-06-07
fix-lua-raw-pushcfunction-exception
مطوّرو البرمجيات

Lua sol2 lambdas and raw lua_pushcfunction must catch C++ exceptions — sol2 does NOT always auto-catch

2026-06-07
fix-cross-language-demo-gotchas
مطوّرو البرمجيات

Common issues in Python/Lua/Julia demos — shape()/numel/item/tostring/init/ins.abs() complex bug patterns

2026-06-06
add-array-setitem
مطوّرو البرمجيات

Adding __setitem__ to Array class — view-based assignment with fill_/copy_from_ via HAL dispatch, operator= semantics, non-contiguous output handling

2026-06-06
add-python-dunder-operators
مطوّرو البرمجيات

Adding all Python dunder operators to pybind11 Array binding — arithmetic, comparison, bitwise, unary, conversion

2026-06-06
cross-language-demo-porting
مطوّرو البرمجيات

Patterns for porting Python radar detection demo to C++, Lua, Julia — CLI args, framework APIs, 1-based indexing, missing bindings

2026-06-06
fix-2d-array-row-write
مطوّرو البرمجيات

Preallocated 2D array row assignment (pc[p] = array) silently fails for large arrays — use ins.stack instead

2026-06-06
fix-batched-fft-axis0
مطوّرو البرمجيات

ins.fft(arr, n, axis=0) on 2D complex128 GPU arrays produces wrong results — use numpy FFT or axis=1 workaround

2026-06-06
fix-ci-doc-path-triggers
مطوّرو البرمجيات

Exclude .md/.txt files from triggering build CI workflows — bindings/**/*.md should not trigger language_bindings or demo_tests

2026-06-06
fix-contiguous-copy-noncontiguous-output
مطوّرو البرمجيات

contiguous_copy kernel writes to wrong positions when output is a non-contiguous view — fast path and non-contiguous path both ignore output strides

2026-06-06
fix-cuda-concat-perf
مطوّرو البرمجيات

Replace element-by-element cudaMemcpy loop with cudaMemcpy2D for batched strided copy (2390x speedup on typical sizes)

2026-06-06
fix-cuda-kernel-runtime
مطوّرو البرمجيات

Fix CUDA kernel runtime bugs discovered through test alignment (missing dtypes, wrong dims, incorrect parameter reading).

2026-06-06
fix-cuda-kernel-view-offset
مطوّرو البرمجيات

CUDA kernels that iterate over input array elements must add src->offset when computing source byte address, or the kernel reads from byte 0 instead of the view's start.

2026-06-06
fix-full-kernel-view-offset
مطوّرو البرمجيات

full kernel ignores out->offset, writing to parent array start instead of view position — affects fill_() on views

2026-06-06
install-language-bindings
مطوّرو البرمجيات

Make Insight7 installable via pip/luarocks/Julia Pkg with backend .so auto-discovery

2026-06-06
optimize-fft-plan-cache
مطوّرو البرمجيات

Replace single-plan FFT cache with multi-plan cache to avoid ~5ms cuFFT plan recreation when alternating between FFT sizes

2026-06-06
pure-insight-python-demo
مطوّرو البرمجيات

Template for pure Insight7 demos with MF FFT caching, device-aware init, --plot matplotlib rendering, and no numpy in core path

2026-06-06
radar-cfar-target-extraction
مطوّرو البرمجيات

Pure Insight7 target extraction from CFAR detection map: nonzero + energy sort + clustering + per-range dedup, avoiding numpy dependency.

2026-06-06
cross-platform-backend-discovery
مطوّرو البرمجيات

Backend discovery for pip/luarocks installs — add_backend_search_path + LD_LIBRARY_PATH + ctypes pre-load

2026-06-05
luarocks-cmake-packaging
مطوّرو البرمجيات

Create luarocks rockspec with cmake build, dynamic backend .so copying, cross-platform

2026-06-05
numpy-partial-indexing
مطوّرو البرمجيات

Implement NumPy-style partial indexing in C++ core — a[1] on multi-dim returns slice view, all languages benefit

2026-06-05
paddle-style-default-device
مطوّرو البرمجيات

Implement PaddlePaddle-style lazy GPU default device in C++ core, all languages inherit

2026-06-05
fix-lua-binding-api-gotchas
مطوّرو البرمجيات

Common Lua binding API issues — comparison operators, item/get, __tostring, scalar inputs

2026-06-05
fix-julia-binding-api-gotchas
مطوّرو البرمجيات

Common Julia binding API issues — from_data column-major, getindex, Base.abs shadowing, load_backend, complex dtypes, axis reversal

2026-06-05
fix-ci-test-tempdir-race
محللو ضمان جودة البرمجيات والمختبرون

Fix CI test failures from parallel test suites competing for shared temp directories

2026-06-05
add-python-slice-getitem
مطوّرو البرمجيات

Python native __getitem__ with int, tuple (mixed int/slice), and slice support for NumPy-style indexing

2026-06-05
smart-backend-init
مطوّرو البرمجيات

ins::init() with optional auto-discover CPU+GPU backends, dynamic-only loading

2026-06-04
wrap-external-plot-library
مطوّرو البرمجيات

Wrapping an external C++ library (matplotplusplus) with Array conversion, conditional compilation, and separate CI

2026-06-04
apply-third-party-patch
مطوّرو البرمجيات

CMake mechanism for idempotent, reproducible patches to third-party dependencies (inspired by PaddlePaddle)

2026-06-04
debug-ci-failures
مطوّرو البرمجيات

Systematic approach to debug and fix multi-job CI failures from user-provided log files

2026-06-04
julia-column-major-layout
مطوّرو البرمجيات

Handle Julia column-major ↔ Insight row-major layout: from_data dim reversal, axis conversion, to_data reshape

2026-06-04
fix-ci-binding-test-paths
محللو ضمان جودة البرمجيات والمختبرون

Fix CI workflow test paths after tests/bindings/ migration to per-module structure

2026-06-03
fix-ci-workflow-path-triggers
مطوّرو البرمجيات

Fix CI workflows not triggering on PRs when new directories are added (backends/**, tests/**, etc.)

2026-06-03
fix-cuda-build-errors
مطوّرو البرمجيات

Common fixes for CUDA kernel build errors (atomicAdd, void*, missing headers, half-precision).

2026-06-03
عرض أهم 40 من أصل 80 skills مجمعة في هذا المستودع.