Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memory improvements (1/3): Introduce new data access layer and schemas #1728

Merged
merged 33 commits into from
Oct 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
39a1598
Mem (1/3): introduce new DAL and core Pydantic models
cjao Jun 23, 2023
9389b3b
Mem (1/3): Fix schemas
cjao Jul 11, 2023
23761a7
Mem (1/3): DAL PR: temporarily redirect core dispatcher tests
cjao Jun 23, 2023
69def08
Mem (1/3): DAL PR: fix tests
cjao Jun 28, 2023
f942531
Mem (1/3): Fix requirements workflow
cjao Jul 12, 2023
4693404
Mem (1/3): Uncomment boilerplate in disabled unit tests
cjao Jul 14, 2023
8bb0adb
Mem (1/3): Add unit test for format_server_url
cjao Jul 14, 2023
b18db33
Mem (1/3): defer copy_file_locally to next PR
cjao Jul 14, 2023
f792432
Mem (1/3): update changelog
cjao Jun 30, 2023
cb8ae1d
Mem (1/3): Core DAL improvements
cjao Sep 22, 2023
7f74c63
syncing with develop
kessler-frost Oct 3, 2023
249578d
updated license of files
kessler-frost Oct 3, 2023
5f3586e
updated license of files
kessler-frost Oct 3, 2023
5ee94d6
fixed alembic migrations order
kessler-frost Oct 3, 2023
e0efd49
fixing tests
kessler-frost Oct 3, 2023
e1e9447
fixing tests
kessler-frost Oct 3, 2023
0745b19
fixing tests
kessler-frost Oct 3, 2023
801842b
Merge branch 'develop' into memory-improvements-pr-1
kessler-frost Oct 3, 2023
0109e36
fixing ui backend tests
kessler-frost Oct 4, 2023
35076e8
Merge branch 'memory-improvements-pr-1' of github.com:AgnostiqHQ/cova…
kessler-frost Oct 4, 2023
b1ceb26
addressed most comments, still some left
kessler-frost Oct 4, 2023
6912aec
implementing final set of suggestions
kessler-frost Oct 5, 2023
f02c68f
Merge branch 'develop' into memory-improvements-pr-1
kessler-frost Oct 5, 2023
acf39f1
updated changelog
kessler-frost Oct 5, 2023
c3be087
fixed changelog
kessler-frost Oct 5, 2023
1c7aa36
implemented suggestions
kessler-frost Oct 12, 2023
4b3f46d
Merge branch 'develop' into memory-improvements-pr-1
kessler-frost Oct 12, 2023
a64a1a6
Merge branch 'develop' into memory-improvements-pr-1
kessler-frost Oct 12, 2023
f49860f
Added qelectron_data_exists to the ElectronMetadata schema
kessler-frost Oct 13, 2023
fa73fee
Added qelectron_data_exists to the electron metadata
kessler-frost Oct 13, 2023
f085136
fixed typo
kessler-frost Oct 13, 2023
3262dfb
fixing test
kessler-frost Oct 13, 2023
b487f58
fixing test
kessler-frost Oct 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions covalent/_workflow/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ def encode_metadata(metadata: dict) -> dict:
else:
encoded_metadata["triggers"] = metadata["triggers"]

# qelectron_data_exists
encode_metadata["qelectron_data_exists"] = None
cjao marked this conversation as resolved.
Show resolved Hide resolved

return encoded_metadata


Expand Down
Loading