repo_full_name stringlengths 6 93 | repo_url stringlengths 25 112 | repo_api_url stringclasses 28
values | owner stringclasses 28
values | repo_name stringclasses 28
values | description stringclasses 28
values | stars int64 617 98.8k | forks int64 31 355 ⌀ | watchers int64 990 999 ⌀ | license stringclasses 2
values | default_branch stringclasses 2
values | repo_created_at timestamp[s]date 2012-07-24 23:12:50 2025-06-16 08:07:28 ⌀ | repo_updated_at timestamp[s]date 2026-02-23 15:23:15 2026-05-03 18:52:12 ⌀ | repo_topics listlengths 0 13 ⌀ | repo_languages unknown | is_fork bool 1
class | open_issues int64 3 104 ⌀ | file_path stringlengths 3 208 | file_name stringclasses 509
values | file_extension stringclasses 1
value | file_size_bytes int64 101 84k ⌀ | file_url stringclasses 627
values | file_raw_url stringclasses 627
values | file_sha stringclasses 624
values | language stringclasses 8
values | parsed_at stringdate 2026-05-04 01:12:36 2026-05-04 19:41:55 | text stringlengths 100 102k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/flashlight.c | null | null | null | null | null | null | C | 2026-05-04T19:06:11.258866 | #ifdef ENABLE_FLASHLIGHT
#include "driver/gpio.h"
#include "bsp/dp32g030/gpio.h"
#include "flashlight.h"
enum FlashlightMode_t gFlashLightState;
void FlashlightTimeSlice()
{
if (gFlashLightState == FLASHLIGHT_BLINK && (gFlashLightBlinkCounter & 15u) == 0) {
GPIO_FlipBit(&GPIOC->DATA, GPIOC_PIN_FLASHLIGHT);
re... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/chFrScanner.c | null | null | null | null | null | null | C | 2026-05-04T19:06:11.321977 |
#include "app/app.h"
#include "app/chFrScanner.h"
#include "functions.h"
#include "misc.h"
#include "settings.h"
int8_t gScanStateDir;
bool gScanKeepResult;
bool gScanPauseMode;
#ifdef ENABLE_SCAN_RANGES
uint32_t gScanRangeStart;
uint32_t gScanRangeStop;
#endif
... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/common.c | null | null | null | null | null | null | C | 2026-05-04T19:06:11.602892 | #include "app/chFrScanner.h"
#include "audio.h"
#include "functions.h"
#include "misc.h"
#include "settings.h"
#include "ui/ui.h"
void COMMON_KeypadLockToggle()
{
if (gScreenToDisplay != DISPLAY_MENU &&
gCurrentFunction != FUNCTION_TRANSMIT)
{ // toggle the keyboad lock
#ifdef ENABLE_VOICE
... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/flashlight.h | null | null | null | null | null | null | C | 2026-05-04T19:06:11.604476 | #ifndef APP_FLASHLIGHT_H
#define APP_FLASHLIGHT_H
#ifdef ENABLE_FLASHLIGHT
#include <stdint.h>
enum FlashlightMode_t {
FLASHLIGHT_OFF = 0,
FLASHLIGHT_ON,
FLASHLIGHT_BLINK,
FLASHLIGHT_SOS
};
extern enum FlashlightMode_t gFlashLightState;
extern volatile uint16_t gFlashLightBlinkCounter;
void Fla... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/generic.c | null | null | null | null | null | null | C | 2026-05-04T19:06:12.022978 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/dtmf.h | null | null | null | null | null | null | C | 2026-05-04T19:06:12.053341 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/chFrScanner.h | null | null | null | null | null | null | C | 2026-05-04T19:06:12.159380 | #ifndef APP_CHFRSCANNER_H
#define APP_CHFRSCANNER_H
#include <stdbool.h>
#include <stdint.h>
// scan direction, if not equal SCAN_OFF indicates
// that we are in a process of scanning channels/frequencies
extern int8_t gScanStateDir;
extern bool gScanKeepResult;
extern bool gScan... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/fm.c | null | null | null | null | null | null | C | 2026-05-04T19:06:12.397827 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/main.c | null | null | null | null | null | null | C | 2026-05-04T19:06:12.597834 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/main.h | null | null | null | null | null | null | C | 2026-05-04T19:06:12.656689 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/scanner.c | null | null | null | null | null | null | C | 2026-05-04T19:06:12.977372 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/menu.h | null | null | null | null | null | null | C | 2026-05-04T19:06:13.082741 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/scanner.h | null | null | null | null | null | null | C | 2026-05-04T19:06:13.409955 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/action.c | null | null | null | null | null | null | C | 2026-05-04T19:06:13.629909 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/spectrum.c | null | null | null | null | null | null | C | 2026-05-04T19:06:13.766097 | /* Copyright 2023 fagci
* https://github.com/fagci
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/fm.h | null | null | null | null | null | null | C | 2026-05-04T19:06:14.074477 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/menu.c | null | null | null | null | null | null | C | 2026-05-04T19:06:14.170621 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/app.c | null | null | null | null | null | null | C | 2026-05-04T19:06:14.276174 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | audio.c | null | null | null | null | null | null | C | 2026-05-04T19:06:14.382172 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/uart.h | null | null | null | null | null | null | C | 2026-05-04T19:06:14.576077 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bitmaps.c | null | null | null | null | null | null | C | 2026-05-04T19:06:14.681578 |
#include "bitmaps.h"
// all these images are on their right sides
// turn your monitor 90-deg anti-clockwise to see the images
const uint8_t BITMAP_POWERSAVE[8] =
{
// "PS"
0b00000000,
0b01111111,
0b00010001,
0b00001110,
0b00000000,
0b01000110,
0b01001001,
0b00110001
};
const uint8_t BITMAP_TX[8] =
{ // "... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | board.h | null | null | null | null | null | null | C | 2026-05-04T19:06:15.289595 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bitmaps.h | null | null | null | null | null | null | C | 2026-05-04T19:06:15.335623 |
#ifndef BITMAP_H
#define BITMAP_H
#include <stdint.h>
extern const uint8_t BITMAP_POWERSAVE[8];
extern const uint8_t BITMAP_TX[8];
extern const uint8_t BITMAP_RX[8];
extern const uint8_t BITMAP_FM[10];
extern const uint8_t BITMAP_BatteryLevel[2];
extern const uint8_t BITMAP_BatteryLevel1[17];
extern const uint8_t B... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/aes.h | null | null | null | null | null | null | C | 2026-05-04T19:06:15.586102 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/flash.h | null | null | null | null | null | null | C | 2026-05-04T19:06:15.962304 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/crc.h | null | null | null | null | null | null | C | 2026-05-04T19:06:17.112980 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/dma.h | null | null | null | null | null | null | C | 2026-05-04T19:06:17.332365 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/gpio.h | null | null | null | null | null | null | C | 2026-05-04T19:06:17.667066 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/uart.c | null | null | null | null | null | null | C | 2026-05-04T19:06:17.785352 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/generic.h | null | null | null | null | null | null | C | 2026-05-04T19:06:17.815599 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/dtmf.c | null | null | null | null | null | null | C | 2026-05-04T19:06:17.860224 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/pmu.h | null | null | null | null | null | null | C | 2026-05-04T19:06:18.299146 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/pwmplus.h | null | null | null | null | null | null | C | 2026-05-04T19:06:18.418395 | #ifndef HARDWARE_DP32G030_PWMPLUS_H
#define HARDWARE_DP32G030_PWMPLUS_H
#define PWM_PLUS0_BASE_ADDR 0x400B4000U
//---------------
#define PWMPLUS_CFG 0x00U
#define PWMPLUS_CFG_COUNTER_EN_SHIFT 0U
#define PWMPLUS_CFG_COUNTER_EN_WIDTH 1U
#define PWMPLUS_CFG_COUNTER_EN... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | app/spectrum.h | null | null | null | null | null | null | C | 2026-05-04T19:06:18.637252 | /* Copyright 2023 fagci
* https://github.com/fagci
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/irq.h | null | null | null | null | null | null | C | 2026-05-04T19:06:18.820747 | #ifndef DP32G030_IRQ_H
#define DP32G030_IRQ_H
enum {
DP32_WWDT_IRQn = 0,
DP32_IWDT_IRQn,
DP32_RTC_IRQn,
DP32_DMA_IRQn,
DP32_SARADC_IRQn,
DP32_TIMER_BASE0_IRQn,
DP32_TIMER_BASE1_IRQn,
DP32_TIMER_PLUS0_IRQn,
DP32_TIMER_PLUS1_IRQn,
DP32_PWM_BASE0_IRQn,
DP32_PWM_BASE1_IRQn,
DP32_PWM_PLUS0_IRQn,
DP32_PWM_PLUS1... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/spi.h | null | null | null | null | null | null | C | 2026-05-04T19:06:18.920558 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | dcs.c | null | null | null | null | null | null | C | 2026-05-04T19:06:18.975889 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/saradc.h | null | null | null | null | null | null | C | 2026-05-04T19:06:19.250214 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | audio.h | null | null | null | null | null | null | C | 2026-05-04T19:06:19.492670 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | dcs.h | null | null | null | null | null | null | C | 2026-05-04T19:06:20.206952 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | board.c | null | null | null | null | null | null | C | 2026-05-04T19:06:21.004650 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requ... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/syscon.h | null | null | null | null | null | null | C | 2026-05-04T19:06:27.964308 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
egzumer/uv-k5-firmware-custom | https://github.com/egzumer/uv-k5-firmware-custom | null | null | null | null | 1,845 | null | null | apache-2.0 | null | null | null | null | null | null | null | bsp/dp32g030/uart.h | null | null | null | null | null | null | C | 2026-05-04T19:06:30.324081 | /* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_e5m2.c | null | null | null | null | null | null | C | 2026-05-04T19:06:40.158981 | /**
* @brief Dispatch Initialization for E5M2 Data Types.
* @file c/dispatch_e5m2.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_e5m2_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_bf16.c | null | null | null | null | null | null | C | 2026-05-04T19:06:40.201605 | /**
* @brief Dispatch Initialization for BF16 Data Types.
* @file c/dispatch_bf16.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_bf16_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_bf16c.c | null | null | null | null | null | null | C | 2026-05-04T19:06:40.767383 | /**
* @brief Dispatch Initialization for BF16C Data Types.
* @file c/dispatch_bf16c.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_bf16c_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_f16.c | null | null | null | null | null | null | C | 2026-05-04T19:06:41.080429 | /**
* @brief Dispatch Initialization for F16 Data Types.
* @file c/dispatch_f16.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_f16_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_e3m2.c | null | null | null | null | null | null | C | 2026-05-04T19:06:41.118842 | /**
* @brief Dispatch Initialization for E3M2 Data Types.
* @file c/dispatch_e3m2.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
#ifdef __cplusplus
extern "C" {
#endif
void nk_dispatch_e3m2_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_f32.c | null | null | null | null | null | null | C | 2026-05-04T19:06:41.358192 | /**
* @brief Dispatch Initialization for F32 Data Types.
* @file c/dispatch_f32.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_f32_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_f64.c | null | null | null | null | null | null | C | 2026-05-04T19:06:41.534811 | /**
* @brief Dispatch Initialization for F64 Data Types.
* @file c/dispatch_f64.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_f64_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_i32.c | null | null | null | null | null | null | C | 2026-05-04T19:06:41.646623 | /**
* @brief Dispatch Initialization for I32 Data Types.
* @file c/dispatch_i32.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_i32_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_e4m3.c | null | null | null | null | null | null | C | 2026-05-04T19:06:41.863387 | /**
* @brief Dispatch Initialization for E4M3 Data Types.
* @file c/dispatch_e4m3.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_e4m3_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_i4.c | null | null | null | null | null | null | C | 2026-05-04T19:06:42.061255 | /**
* @brief Dispatch Initialization for I4 Data Types.
* @file c/dispatch_i4.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
#ifdef __cplusplus
extern "C" {
#endif
void nk_dispatch_i4_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
ty... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_i8.c | null | null | null | null | null | null | C | 2026-05-04T19:06:42.321384 | /**
* @brief Dispatch Initialization for I8 Data Types.
* @file c/dispatch_i8.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_i8_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_TAR... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_e2m3.c | null | null | null | null | null | null | C | 2026-05-04T19:06:42.367359 | /**
* @brief Dispatch Initialization for E2M3 Data Types.
* @file c/dispatch_e2m3.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
#ifdef __cplusplus
extern "C" {
#endif
void nk_dispatch_e2m3_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_f64c.c | null | null | null | null | null | null | C | 2026-05-04T19:06:42.472597 | /**
* @brief Dispatch Initialization for F64C Data Types.
* @file c/dispatch_f64c.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_f64c_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_f32c.c | null | null | null | null | null | null | C | 2026-05-04T19:06:42.545544 | /**
* @brief Dispatch Initialization for F32C Data Types.
* @file c/dispatch_f32c.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_f32c_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch.h | null | null | null | null | null | null | C | 2026-05-04T19:06:42.546845 | /**
* @brief Common Definitions for Dispatch Files.
* @file c/dispatch.h
* @author Ash Vardanian
* @date February 3, 2026
*/
#ifndef NK_DISPATCH_H
#define NK_DISPATCH_H
#define NK_DYNAMIC_DISPATCH 1
#define NK_NATIVE_F16 0
#define NK_NATIVE_BF16 0
/* NK_TARGET_* defines are set by the build syste... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_other.c | null | null | null | null | null | null | C | 2026-05-04T19:06:42.575541 | /**
* @brief Dispatch Initialization for Type Conversions and Scalar Math.
* @file c/dispatch_other.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_cast_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_i64.c | null | null | null | null | null | null | C | 2026-05-04T19:06:42.618163 | /**
* @brief Dispatch Initialization for I64 Data Types.
* @file c/dispatch_i64.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_i64_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_u1.c | null | null | null | null | null | null | C | 2026-05-04T19:06:43.031658 | /**
* @brief Dispatch Initialization for U1 Data Types.
* @file c/dispatch_u1.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_u1_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_TAR... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_u8.c | null | null | null | null | null | null | C | 2026-05-04T19:06:43.192165 | /**
* @brief Dispatch Initialization for U8 Data Types.
* @file c/dispatch_u8.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_u8_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_TAR... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_i16.c | null | null | null | null | null | null | C | 2026-05-04T19:06:43.327901 | /**
* @brief Dispatch Initialization for I16 Data Types.
* @file c/dispatch_i16.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_i16_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/attention/sapphireamx.h | null | null | null | null | null | null | C | 2026-05-04T19:06:44.107504 | /**
* @brief FlashAttention-style kernels for Intel Sapphire Rapids AMX.
* @file include/numkong/attention/sapphireamx.h
* @author Ash Vardanian
* @date January 5, 2026
*
* @sa include/numkong/attention.h
*
* This file implements FlashAttention-2 style scaled dot-product attention (SDPA) optimized
* for... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/attention.h | null | null | null | null | null | null | C | 2026-05-04T19:06:44.323702 | /**
* @brief SIMD-accelerated Transformer Attention.
* @file include/numkong/attention.h
* @author Ash Vardanian
* @date January 11, 2026
*
* Contains following kernels:
*
* - Numerically stable SoftMax
* - End-to-end Attention
*
* For dtypes:
*
* - 32-bit floating point numbers → 32-bit floats
*... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_u4.c | null | null | null | null | null | null | C | 2026-05-04T19:06:44.873241 | /**
* @brief Dispatch Initialization for U4 Data Types.
* @file c/dispatch_u4.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
#ifdef __cplusplus
extern "C" {
#endif
void nk_dispatch_u4_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
ty... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast.h | null | null | null | null | null | null | C | 2026-05-04T19:06:44.943705 | /**
* @brief SIMD-accelerated Type Conversions.
* @file include/numkong/cast.h
* @author Ash Vardanian
* @date January 2, 2026
*
* This file focuses on numeric types not uniformly supported across platforms, prioritizing:
*
* - `e5m2` & `e4m3` ↔ `f16` & `bf16` - used for low-precision dot-products on mode... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/capabilities.h | null | null | null | null | null | null | C | 2026-05-04T19:06:45.412011 | /**
* @brief SIMD capability detection and thread configuration.
* @file include/numkong/capabilities.h
* @author Ash Vardanian
* @date February 6, 2026
*
* @section x86_targets Choosing x86 Target Generations
*
* It's important to provide fine-grained controls over AVX512 families, as they are very fragm... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_f16c.c | null | null | null | null | null | null | C | 2026-05-04T19:06:45.549360 | /**
* @brief Dispatch Initialization for F16C Data Types.
* @file c/dispatch_f16c.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_f16c_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/icelake.h | null | null | null | null | null | null | C | 2026-05-04T19:06:46.000143 | /**
* @brief SIMD-accelerated Type Conversions for Ice Lake.
* @file include/numkong/cast/icelake.h
* @author Ash Vardanian
* @date January 2, 2026
*
* @section ice_cast_instructions AVX-512 VBMI2 Instructions
*
* Intrinsic Instruction Icelake Genoa
* _mm512_per... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/haswell.h | null | null | null | null | null | null | C | 2026-05-04T19:06:46.403261 | /**
* @brief SIMD-accelerated Type Conversions for Haswell.
* @file include/numkong/cast/haswell.h
* @author Ash Vardanian
* @date January 2, 2026
*
* @section haswell_cast_instructions Key F16C/AVX2 Conversion Instructions
*
* Intrinsic Instruction Haswell Genoa
... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/diamond.h | null | null | null | null | null | null | C | 2026-05-04T19:06:46.606626 | /**
* @brief SIMD-accelerated Type Conversions for Diamond Rapids.
* @file include/numkong/cast/diamond.h
* @author Ash Vardanian
* @date March 23, 2026
*
* @sa include/numkong/cast/icelake.h
*
* Uses VCVTHF82PH (E4M3→FP16) and VCVTBF82PH (E5M2→FP16) for native 1-instruction
* FP8→FP16 conversion. Both ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/neon.h | null | null | null | null | null | null | C | 2026-05-04T19:06:46.608140 | /**
* @brief SIMD-accelerated Type Conversions for NEON.
* @file include/numkong/cast/neon.h
* @author Ash Vardanian
* @date December 27, 2025
*
* @sa include/numkong/cast.h
*
* @section neon_cast_instructions ARM NEON Conversion Instructions
*
* Float ↔ integer conversions:
*
* Intrinsic I... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/rvv.h | null | null | null | null | null | null | C | 2026-05-04T19:06:46.793813 | /**
* @brief SIMD-accelerated Type Conversions for RISC-V.
* @file include/numkong/cast/rvv.h
* @author Ash Vardanian
* @date January 13, 2026
*
* @sa include/numkong/cast.h
*
* SpacemiT K1 and similar chips implement RVA22 profile with base RVV 1.0.
* This file provides vectorized type conversions for:... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/loongsonasx.h | null | null | null | null | null | null | C | 2026-05-04T19:06:47.038028 | /**
* @brief SIMD-accelerated Type Conversions and Load/Store Helpers for LoongArch LASX (256-bit).
* @file include/numkong/cast/loongsonasx.h
* @author Ash Vardanian
* @date March 23, 2026
*
* @sa include/numkong/cast.h
*
* @section loongsonasx_cast_instructions Key LASX Load/Store Instructions
*
* ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/v128relaxed.h | null | null | null | null | null | null | C | 2026-05-04T19:06:47.794855 | /**
* @brief SIMD-accelerated Type Conversions for WASM.
* @file include/numkong/cast/v128relaxed.h
*/
#ifndef NK_CAST_V128RELAXED_H
#define NK_CAST_V128RELAXED_H
#if NK_TARGET_V128RELAXED
#include "numkong/types.h"
#include "numkong/cast/serial.h"
#if defined(__cplusplus)
extern "C" {
#endif
#if defined(__cl... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved.h | null | null | null | null | null | null | C | 2026-05-04T19:06:48.188162 | /**
* @brief SIMD-accelerated Similarity Measures for Curved Spaces.
* @file include/numkong/curved.h
* @author Ash Vardanian
* @date August 27, 2024
*
* Contains following similarity measures:
*
* - Mahalanobis distance: √((a-b)ᵀ × C × (a-b))
* - Bilinear form: aᵀ × C × b
* - Bilinear form over compl... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/sapphire.h | null | null | null | null | null | null | C | 2026-05-04T19:06:48.756294 | /**
* @brief SIMD-accelerated Type Conversions for Sapphire Rapids.
* @file include/numkong/cast/sapphire.h
* @author Ash Vardanian
* @date January 2, 2026
*
* @section sapphire_cast_instructions Relevant Instructions
*
* Intrinsic Instruction Sapphire Genoa
* ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/genoa.h | null | null | null | null | null | null | C | 2026-05-04T19:06:48.757445 | /**
* @brief SIMD-accelerated Curved Space Similarity for Genoa.
* @file include/numkong/curved/genoa.h
* @author Ash Vardanian
* @date January 14, 2026
*
* @sa include/numkong/curved.h
*
* Implements bf16 bilinear forms using AVX-512 with BF16 extensions.
*/
#ifndef NK_CURVED_GENOA_H
#define NK_CURVED_G... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/skylake.h | null | null | null | null | null | null | C | 2026-05-04T19:06:48.862352 | /**
* @brief SIMD-accelerated Type Conversions for Skylake.
* @file include/numkong/cast/skylake.h
* @author Ash Vardanian
* @date December 27, 2025
*
* @sa include/numkong/cast.h
*
* @section skylake_cast_instructions AVX-512 Conversion Instructions
*
* Intrinsic Instruction ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_u32.c | null | null | null | null | null | null | C | 2026-05-04T19:06:48.937689 | /**
* @brief Dispatch Initialization for U32 Data Types.
* @file c/dispatch_u32.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_u32_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_u64.c | null | null | null | null | null | null | C | 2026-05-04T19:06:48.967517 | /**
* @brief Dispatch Initialization for U64 Data Types.
* @file c/dispatch_u64.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_u64_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/serial.h | null | null | null | null | null | null | C | 2026-05-04T19:06:49.041549 | /**
* @brief SWAR-accelerated Type Conversions for SIMD-free CPUs.
* @file include/numkong/cast/serial.h
* @author Ash Vardanian
* @date January 2, 2026
*/
#ifndef NK_CAST_SERIAL_H
#define NK_CAST_SERIAL_H
#include "numkong/types.h"
#if defined(__cplusplus)
extern "C" {
#endif
/* Keep the serial conversion... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/haswell.h | null | null | null | null | null | null | C | 2026-05-04T19:06:49.401135 | /**
* @brief SIMD-accelerated Curved Space Similarity for Haswell.
* @file include/numkong/curved/haswell.h
* @author Ash Vardanian
* @date January 14, 2026
*
* @sa include/numkong/curved.h
*
* Implements f16 and bf16 bilinear forms using AVX2 with F16C conversion.
*/
#ifndef NK_CURVED_HASWELL_H
#define ... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/neon.h | null | null | null | null | null | null | C | 2026-05-04T19:06:49.483294 | /**
* @brief SIMD-accelerated Curved Space Similarity for NEON.
* @file include/numkong/curved/neon.h
* @author Ash Vardanian
* @date January 14, 2026
*
* @sa include/numkong/curved.h
*
* Implements f32 bilinear forms and Mahalanobis distance using ARM NEON SIMD.
* Accumulates f32 inputs in f64 precisio... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/rvv.h | null | null | null | null | null | null | C | 2026-05-04T19:06:49.631695 | /**
* @brief SIMD-accelerated Curved Space Distances for RISC-V.
* @file include/numkong/curved/rvv.h
* @author Ash Vardanian
* @date February 6, 2026
*
* @sa include/numkong/curved.h
*
* Implements bilinear forms and Mahalanobis distance using RVV 1.0:
* - f32 inputs use f32 SIMD accumulation with vfre... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/serial.h | null | null | null | null | null | null | C | 2026-05-04T19:06:49.693890 | /**
* @brief SWAR-accelerated Curved Space Similarity for SIMD-free CPUs.
* @file include/numkong/curved/serial.h
* @author Ash Vardanian
* @date January 14, 2026
*
* @sa include/numkong/curved.h
*
* Implements bilinear forms and Mahalanobis distance with precision-appropriate strategies:
* - f64 inputs... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/neonbfdot.h | null | null | null | null | null | null | C | 2026-05-04T19:06:49.756084 | /**
* @brief SIMD-accelerated Curved Space Similarity for NEON BF16.
* @file include/numkong/curved/neonbfdot.h
* @author Ash Vardanian
* @date January 14, 2026
*
* @sa include/numkong/curved.h
*
* Implements bf16 bilinear forms and Mahalanobis distance using ARM NEON with BF16 extensions.
*
* @section... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/skylake.h | null | null | null | null | null | null | C | 2026-05-04T19:06:50.086944 | /**
* @brief SIMD-accelerated Curved Space Similarity for Skylake.
* @file include/numkong/curved/skylake.h
* @author Ash Vardanian
* @date January 14, 2026
*
* @sa include/numkong/curved.h
*
* Implements f32 and f64 bilinear forms and Mahalanobis distance using AVX-512:
* - f32 inputs accumulate in f64... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/numkong.c | null | null | null | null | null | null | C | 2026-05-04T19:06:51.747763 | /**
* @brief Dynamic dispatch library for NumKong.
* @file c/numkong.c
* @author Ash Vardanian
* @date March 13, 2024
*/
#include "dispatch.h"
/* MemorySanitizer cannot track initialization through SIMD intrinsics (SVE, NEON, SSE, AVX),
* causing false-positive "use-of-uninitialized-value" reports. We unpo... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/cast/powervsx.h | null | null | null | null | null | null | C | 2026-05-04T19:06:53.075462 | /**
* @brief SIMD-accelerated Type Conversions for Power VSX.
* @file include/numkong/cast/powervsx.h
* @author Ash Vardanian
* @date March 23, 2026
*
* @sa include/numkong/cast.h
*
* @section powervsx_cast_instructions Power VSX Conversion Instructions (POWER9+)
*
* Float16 hardware conversion (POWER9... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | c/dispatch_u16.c | null | null | null | null | null | null | C | 2026-05-04T19:06:54.742346 | /**
* @brief Dispatch Initialization for U16 Data Types.
* @file c/dispatch_u16.c
* @author Ash Vardanian
* @date February 3, 2026
*/
#include "dispatch.h"
void nk_dispatch_u16_find_(nk_capability_t v, nk_kernel_kind_t k, nk_kernel_punned_t *m, nk_capability_t *c) {
typedef nk_kernel_punned_t m_t;
#if NK_... |
ashvardanian/NumKong | https://github.com/ashvardanian/NumKong | null | null | null | null | 1,807 | null | null | apache-2.0 | null | null | null | null | null | null | null | include/numkong/curved/smef64.h | null | null | null | null | null | null | C | 2026-05-04T19:06:55.412054 | /**
* @brief SIMD-accelerated Curved Space Similarity for SME F64.
* @file include/numkong/curved/smef64.h
* @author Ash Vardanian
* @date January 14, 2026
*
* @sa include/numkong/curved.h
*
* Implements bilinear forms and Mahalanobis distance using ARM SME:
* - f32 inputs: GEMV via f64 FMOPA (widening ... |
metacall/core | https://github.com/metacall/core | null | null | null | null | 1,796 | null | null | apache-2.0 | null | null | null | null | null | null | null | source/adt/include/adt/adt_comparable.h | null | null | null | null | null | null | C | 2026-05-04T19:07:02.906012 | /*
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with th... |
metacall/core | https://github.com/metacall/core | null | null | null | null | 1,796 | null | null | apache-2.0 | null | null | null | null | null | null | null | source/adt/include/adt/adt_hash.h | null | null | null | null | null | null | C | 2026-05-04T19:07:02.907904 | /*
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with th... |
metacall/core | https://github.com/metacall/core | null | null | null | null | 1,796 | null | null | apache-2.0 | null | null | null | null | null | null | null | source/adt/include/adt/adt_bucket.h | null | null | null | null | null | null | C | 2026-05-04T19:07:02.915443 | /*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
*/
#ifndef ADT_BUCKET_H
#define ADT_BUCKET_H 1
/* -- Headers -- */
#include <adt/adt_api.h>
#include <ad... |
metacall/core | https://github.com/metacall/core | null | null | null | null | 1,796 | null | null | apache-2.0 | null | null | null | null | null | null | null | source/adt/include/adt/adt_trie.h | null | null | null | null | null | null | C | 2026-05-04T19:07:02.918758 | /*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
*/
#ifndef ADT_TRIE_H
#define ADT_TRIE_H 1
/* -- Headers -- */
#include <adt/adt_api.h>
#include <adt/ad... |
metacall/core | https://github.com/metacall/core | null | null | null | null | 1,796 | null | null | apache-2.0 | null | null | null | null | null | null | null | source/adt/include/adt/adt_map.h | null | null | null | null | null | null | C | 2026-05-04T19:07:02.929429 | /*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
*/
#ifndef ADT_MAP_H
#define ADT_MAP_H 1
/* -- Headers -- */
#include <adt/adt_api.h>
#include <adt/adt_... |
metacall/core | https://github.com/metacall/core | null | null | null | null | 1,796 | null | null | apache-2.0 | null | null | null | null | null | null | null | source/adt/include/adt/adt_string.h | null | null | null | null | null | null | C | 2026-05-04T19:07:02.936408 | /*
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with th... |
metacall/core | https://github.com/metacall/core | null | null | null | null | 1,796 | null | null | apache-2.0 | null | null | null | null | null | null | null | source/adt/include/adt/adt.h | null | null | null | null | null | null | C | 2026-05-04T19:07:02.941614 | /*
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with th... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.