mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
601e276a30
* Add init information * Adjust order and move content * GPU support * edit docs * README structure * Update Dockerfile * Update rdagent/utils/env.py * Update read the docs * Update framework
28 lines
631 B
ReStructuredText
28 lines
631 B
ReStructuredText
===============================
|
|
Framework Design & Components
|
|
===============================
|
|
|
|
Framework & Components
|
|
=========================
|
|
|
|
- TODO: Components & Feature Level
|
|
|
|
- Class Level Figure
|
|
|
|
Detailed Design
|
|
=========================
|
|
|
|
|
|
Configuration
|
|
-------------
|
|
|
|
You can manually source the `.env` file in your shell before running the Python script:
|
|
Most of the workflow are controlled by the environment variables.
|
|
```sh
|
|
# Export each variable in the .env file; Please note that it is different from `source .env` without export
|
|
export $(grep -v '^#' .env | xargs)
|
|
# Run the Python script
|
|
python your_script.py
|
|
```
|
|
|