algenta-bits-time

Bit, number and time kernels. Compiled Mojo, loaded in-process.

8 modules · 82 functions · CPU

Get started

pip install kernels torch
from kernels import get_kernel

kernel = get_kernel(
    "thyn-ai/algenta-bits-time",
    version=1,
    backend="cpu",
    trust_remote_code=["thyn-ai/algenta-bits-time"],
)
kernel.number_theory.prime_factors(360)  # -> [2, 2, 2, 3, 3, 5]  prime factors

backend="cpu" selects the CPU build. On a Mac the loader otherwise looks for a Metal build, which this family does not ship. trust_remote_code names the repositories you allow; Hugging Face's trusted publishers load without it.

Plain Python in, plain Python out. Lists, tuples, buffers and tensors are accepted wherever the contract expects a list; structured results are dictionaries. Some functions take a list and the number of elements to use from it, which may not exceed the list's length; multi-dimensional data is passed flattened, row-major, with its dimensions. Functions that update an argument do so in place, as help() says. Every call is checked against the published contract before it reaches native code. An invalid call raises KernelError with a stable code, never a crash.

Any function can also be called by name, with args as a list or a dict of parameter names:

kernel.execute("discrete_event.calendar", "calendar_order_audit", [...])

What's inside

Module Functions What it does
agent_runtime 10 AI-agent scoring: tool-call cost and ranking, retry decision, discounted action value, budgets
bitops 13 Bit operations: popcount, leading and trailing zeros, powers of two, rotates, bit flags, FNV-1a
datetime 13 UTC dates from Unix epoch seconds: ISO 8601 parse and format, day of week, leap years, day math
discrete_event.calendar 4 Deterministic event calendar: heap replay ordered by time, priority and insertion, with audits
number_theory 12 Number theory: Miller-Rabin primality, GCD, LCM, modular power and inverse, totient, sieve
sentiment 10 Lexicon sentiment analysis: polarity from -1 to +1, labels, subjectivity, signed word counts
stateful_runtime 10 Memory scoring for stateful agents: Ebbinghaus decay, prioritized replay, consolidation
time_zone 10 Fixed-offset time zones: eleven zone offsets, simple DST, conversion, business-hour overlap

kernel.CONTRACT holds every signature, including the length rules for list arguments; help(kernel.agent_runtime) documents each function.

Not included

  • datetime.now_epoch — served by the Algenta runtime, not this in-process build.

Requirements

  • Apple silicon: macOS 15 or later for the CPU build.
  • Linux arm64 and x86-64, glibc 2.35 or later.
  • kernels 0.17 or later and PyTorch 2.5 to 2.14. PyTorch has to be installed: the loader picks the build for your PyTorch version. The kernel itself never imports it.

Windows is not supported.

Notes

Calls into one kernel instance run one at a time; use processes for parallelism. Runtime state does not survive fork(); start worker processes with spawn.

License

Algenta Community License 1.1 (LICENSE). Free for personal, research and open-source use, and for internal use at organizations with fewer than 50 employees and under $5M in annual revenue. Beyond that, a commercial license is required: https://algenta.ai/pricing.

Enforced in the compiled library, not just in this text: one concurrent native worker per device (ABI §9). A second process, family or thread waits its turn rather than running in parallel. That is the Community licence's worker floor made real; parallel execution comes with a commercial license.

Support

Generally Available on the platforms listed under Requirements. Within v1, functions are only added; removals or signature changes ship as v2. Platforms, accelerators and PyTorch releases not listed are not supported. Documentation: https://docs.algenta.ai (the kernels guide: https://docs.algenta.ai/guides/kernels-on-hugging-face). Community: https://discord.gg/w8NDsph9an or this repository's Community tab. Commercial licences and support: https://algenta.ai/pricing.

Downloads last month
3
algenta
mojo
cpu
other
Torch
2.14
OS
macoslinux
Arch
x86_64aarch64