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

Merge changes from develop-specact into develop #155

Closed
wants to merge 45 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
857da88
added state path initialization for hydr
Nov 29, 2023
8fd5775
specl uci example and fix accidentally nullified specactions Dict
rburghol Nov 29, 2023
243b914
Merge pull request #123 from HARPgroup/develop-specact
PaulDudaRESPEC Dec 1, 2023
84d71b0
basic object declaration for specal ACTIONS
Dec 20, 2023
6c4f4e3
add asic om comps
Dec 21, 2023
c765102
added documentation and modularized the object loading and tokenizing…
Dec 22, 2023
02cc1ab
finished parser for specal basic, added function support for testing
Dec 27, 2023
31942f7
tested basic specl, works thus far with no time matching, and need to…
Dec 27, 2023
b1edb24
domt wipe the model_data in the context function as this stuff should…
Dec 27, 2023
ffa484c
screen for valid action and support integer AC code. not yet tested.
Dec 27, 2023
6f16851
Move validation to handle_prop and rename runtime to follow convention
Dec 27, 2023
bf62e28
Merge pull request #128 from HARPgroup/develop-specact-1
PaulDudaRESPEC Jan 3, 2024
9635626
Merge pull request #129 from respec/develop
PaulDudaRESPEC Jan 3, 2024
35c85e6
small clean-ups to SPECL functionality
PaulDudaRESPEC Jan 3, 2024
e271c39
state.py -- revised domain name, leaving off the activity name ('HYDR…
PaulDudaRESPEC Jan 5, 2024
429cbd6
HYDR.py and main.py -- minor changes to comments only
PaulDudaRESPEC Jan 5, 2024
798f049
first cut at changes required to implement sample SEDTRN special actions
PaulDudaRESPEC Jan 10, 2024
dd21d9e
added partial code support for specl counter and date to begin
Jan 24, 2024
f6f5a83
Merge pull request #131 from HARPgroup/develop-specact
PaulDudaRESPEC Jan 24, 2024
275d194
fix incorrect hand off creation to base class ModelObject to enable s…
Jan 25, 2024
a31b767
Merge pull request #132 from HARPgroup/develop-specact
PaulDudaRESPEC Jan 25, 2024
5a26f19
om.py -- in step_one, handle case where none is returned
PaulDudaRESPEC Jan 25, 2024
f21f10a
changed to fixed width integer array for tokens and do not iterate th…
Jan 30, 2024
9c5cf06
expand run duration on test
Jan 30, 2024
1ad90e1
om_special_action.py -- add False to return to satisfy njit requirement
PaulDudaRESPEC Jan 30, 2024
a5a2c6a
bencmarking script made to include 1,000 special actions
Jan 30, 2024
449e9b9
runnable from command line as "py.exe benchmarking.py"
Jan 30, 2024
b672294
format state_ix for higher read/write speed
Feb 2, 2024
f1c1be8
utilities.py -- fix gener to gener linkage naming
PaulDudaRESPEC Feb 2, 2024
9c0db21
finalized ndarray for state_ix which has the largest impact. allow s…
Feb 6, 2024
9594569
Merge pull request #134 from HARPgroup/develop-specact-speed
PaulDudaRESPEC Feb 16, 2024
0dd9b81
make state float64 instead of float32
Feb 21, 2024
9f02ba2
Merge pull request #136 from HARPgroup/develop-specact-speed
PaulDudaRESPEC Feb 21, 2024
642301b
Merge pull request #145 from respec/master
PaulDudaRESPEC Mar 5, 2024
aa58d28
Create CONTRIBUTING.md
PaulDudaRESPEC Apr 3, 2024
4a7b941
Update README.md
PaulDudaRESPEC Apr 3, 2024
5d77ac6
domain specific dependency endpoint support functions and test implem…
Apr 12, 2024
ef72917
domain specific dependency endpoint support functions and test implem…
Apr 12, 2024
5f43051
added some informational items
Apr 15, 2024
333a5d8
added some informational items
Apr 15, 2024
f643464
added new special action tester UCI and restored the HYDR njit to pre…
Apr 22, 2024
a53fc20
point check_depends_endpoint.py to use new test10spec.uci
Apr 22, 2024
780eb28
Merge pull request #154 from respec/master
PaulDudaRESPEC Apr 23, 2024
6e3d639
revert changes to test10.uci to omit SPECIAL ACTIONS
Apr 24, 2024
3fc278c
Merge pull request #150 from HARPgroup/develop-specact-depend
PaulDudaRESPEC Apr 24, 2024
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
147 changes: 76 additions & 71 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,71 +1,76 @@
# Editors & IDEs
.vscode
.vs
.idea

# Jupyter Notebook
.ipynb_checkpoints

# Distribution / packaging
build
build/*
_build
_build/*
.bzr
develop-eggs
dist
dist/*
downloads
*.egg
*.EGG
*.egg-info
eggs
fake-eggs
.installed.cfg
.mr.developer.cfg
parts

# Byte-compiled / optimized / DLL files
*.pyc
__pycache__
__pycache__/*
*.pyo
.svn

# Unit test / coverage reports
htmlcov
.tox
.tox/*
.coverage
.coverage/*
*.ech
*.log
*.hbnhead
*.units.dbf

# Translations
*.mo

# Stashes, etc.
stats.dat
.ropeproject
.hg
*.tmp*
tests/_LargeFileStash

# Temporary files
_TutorialData/

# Specific files
run.py
tests/GLWACSO/HSP2results/hspp007.hdf
tests/GLWACSO/HSPFresults/hspf006.HBN
tests/GLWACSO/HSP2results/hspp007.uci
tests/test_report_conversion.html
tests/land_spec/hwmA51800.h5
tests/testcbp/HSP2results/PL3_5250_0001.h5
tests/testcbp/HSP2results/*.csv

# R files
.Rdata
.Rhistory
# Editors & IDEs
.vscode
.vs
.idea

# Jupyter Notebook
.ipynb_checkpoints

# Distribution / packaging
build
build/*
_build
_build/*
.bzr
develop-eggs
dist
dist/*
downloads
*.egg
*.EGG
*.egg-info
eggs
fake-eggs
.installed.cfg
.mr.developer.cfg
parts

# Byte-compiled / optimized / DLL files
*.pyc
__pycache__
__pycache__/*
*.pyo
.svn

# Unit test / coverage reports
htmlcov
.tox
.tox/*
.coverage
.coverage/*
*.ech
*.log
*.hbnhead
*.units.dbf

# Translations
*.mo

# Stashes, etc.
stats.dat
.ropeproject
.hg
*.tmp*
tests/_LargeFileStash

# Temporary files
_TutorialData/


# Specific files
run.py
tests/GLWACSO/HSP2results/hspp007.hdf
tests/GLWACSO/HSPFresults/hspf006.HBN
tests/GLWACSO/HSP2results/hspp007.uci
tests/test_report_conversion.html

# Omit big files
*.h5
tests/land_spec/hwmA51800.h5
tests/testcbp/HSP2results/PL3_5250_0001.h5
tests/testcbp/HSP2results/*.csv
tests/test10/HSP2results/test10.h5

# R files
.Rdata
.Rhistory
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<h1>Contribution Guidelines:</h1>
The HSPsquared team appreciates your interest as we work to build a community of collaborators!

<h2>Pull Requests:</h2>
<ul>
<li>Please submit pull requests into the <b>Develop</b> branch.</li>
<li>If your pull request relates to an Issue, please be sure to reference the issue in the description.</li>
Loading