#workspace #map #node #memory #hierarchical

icentral-bc-mem

icentral-bc-mem facilitates the creation and management of hierarchical memory workspaces using node-centric structures and map-based memory organization

1 unstable release

new 0.1.0 Apr 4, 2025

#18 in #hierarchical


Used in 29 crates (4 directly)

MIT/Apache

16KB
56 lines

icentral-bc-mem

icentral-bc-mem offers a robust mechanism for managing memory workspaces through its main structure BcMemWorkspace. This crate is oriented for advanced Rust developers who are paving intricate memory layout and manipulation strategies, particularly in scenarios that involve hierarchical node management.

Features

  • Hierarchy Management: Handle nested structures efficiently using a vector of vectors for node-level representation, facilitating node additions, deletions, and hierarchical operations.
  • Map-Based Memory Organization: Implement sophisticated memory handling with ParentsMap and SigmaMap, leveraging these constructs to organize memory in a configurable way.
  • Interfaces and Functions:
    • Dynamically manage named empty workspaces with the CreateNamedEmpty implementation.
    • Seamlessly resize memory allocations and access specific node-level information.

Usage

Integrate BcMemWorkspace within your application where memory mapping and node organization are paramount. Use the provided APIs to craft refined hierarchical and memory models.

use icentral_bc_mem::BcMemWorkspace;
let mut workspace = BcMemWorkspace::empty("workspace1");
workspace.push_level(vec![NodeId::new(1), NodeId::new(2)]);

icentral-bc-mem encourages developers to engage with memory layout mechanisms at a fundamental level, potentially benefiting compilers or simulation engines.

Integration

To integrate icentral-bc-mem into your project, update your Cargo.toml:

dependencies = {
    icentral-bc-mem = "0.1.0"
}

Note

This README.md file was generated by an AI model. While we strive for accuracy and clarity, please verify details to ensure they meet your specific needs.

This crate is in the process of being translated from c++ to rust. Currently, it still needs exhaustive testing. It is likely there currently exist many glitches which need to be fixed before proper usage. This crate is based on the original icentral program developed by Fuad Jamor. Please see the following repository for details: https://github.com/fjamour/icentral.

For progress updates, see the workspacer rust project.

Dependencies

~16–26MB
~389K SLoC