The official high-performance mapping function for mixed-type arrays powered by Work TIF Ltd.
Project description
Overview
Purem is an advanced high-performance computational library optimized for vectorized mathematical operations. This project focuses on efficient execution of element-wise transformations, including softmax, exp, and other mathematical functions, leveraging highly optimized assembly code for modern architectures.
Key Features
Purem is a blazing-fast AI math engine that turns your Python formulas into native-speed vectorized execution. Achieve up to 429× faster performance on CPU/GPU/TPU – no rewrites, no dependencies, just speed. Designed for ML researchers, scientific computing, and production-grade workloads that can’t afford to wait.
—
🔧 Installation
Install the Python wrapper via pip:
pip install purem
📦 Note: Installation is quick, but purem must be initialized with a license before use. Setup takes less than a minute – we’re ready when you are: https://worktif.com/#start
—
🚀 Quickstart
Import and Initialize:
from purem import purem purem.configure(license_key='your-license-key') # Auto-downloads and configures backend
—
🔐 License-Based Activation
The system will download the licensed native Purem engine:
Call purem.configure(license_key='<your-license-key>')
The system will download the native Purem engine
All functions will become available instantly after initialization
Without a valid license key:
No native Purem engine will be downloaded
—
🧠 Available Functions
After initialization, you can call:
from purem import purem # Transforms a list of numbers into a probability distribution. # Each output value is between 0 and 1, and all outputs sum to 1. # Commonly used in classification tasks to interpret scores as probabilities. purem.softmax([...]) ...
Full function list: https://worktif.com/docs/basic-usage
—
📦 Packaging Notes
This package does not bundle the native Purem engine. You are required to:
Use a license key to download it dynamically
—
🧪 Benchmark Tutorial
Visit the Benchmark Tutorial: https://worktif.com/#benchmarks
How Purem compares to NumPy, PyTorch and Numba
How it reaches low-level performance via native execution
Why it’s faster than traditional Python-based computation
—
📧 Distribution and Licensing
The native Purem engine is distributed exclusively through license-based activation. All users must:
Use their license key to install
For access, contact us or visit: https://worktif.com/documents/terms-of-service
—
📚 Full Example
# Import required modules
import numpy as np
from purem import purem
# Automatic setup using license key
try:
purem.configure(license_key='<your-license-key>')
except Exception as e:
print(f"Setup failed: {e}")
data = np.array([1.0, 2.0, 3.0], dtype=float)
output = purem.softmax(data)
print(output)
—
🧠 Why Purem?
🔥 High level performance with zero Python overhead
🧪 Built-in benchmarking and scientific accuracy
🧩 Easy plug-and-play design
🔐 Secure and license-aware system
—
🛠 Advanced Usage & API Docs
Coming soon…
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file purem-3.0.3.tar.gz.
File metadata
- Download URL: purem-3.0.3.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a7bc6cc02997d4c7060ce14d28a550b6a7e71cb42d3e4d71a9cb49bea3a5d5d
|
|
| MD5 |
2397b3668610ffd9b86d81f6b4ed3e59
|
|
| BLAKE2b-256 |
7ff71f9c2517544ecaa3e81b57efd085855a55689fb552d7734c1178c46689a0
|
File details
Details for the file purem-3.0.3-py3-none-any.whl.
File metadata
- Download URL: purem-3.0.3-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01c1f5fa95c10bd15d0fc5cc832188bd83f79111e6b82113e705c3d262ebcb49
|
|
| MD5 |
60452086f57882332c52861304b1bb53
|
|
| BLAKE2b-256 |
689356953fe1075fd6776371c275cd296704d15a0a085de975bea75069e062c9
|