Spaces:
Running
Running
Update src/Home.py
Browse files- src/Home.py +1 -1
src/Home.py
CHANGED
|
@@ -449,7 +449,7 @@ with col1:
|
|
| 449 |
|
| 450 |
max_iterations = st.number_input("Max Iterations:", min_value=1, max_value=16, value=14)
|
| 451 |
conv_crit = st.number_input("Convergence Criterion:", min_value=1e-7, max_value=1e-3, value=1e-6, format="%.1e")
|
| 452 |
-
ncores =
|
| 453 |
use_pyscf_grids = st.checkbox("Use PySCF Grids", value=True, help="Use either PySCF grids for both PyFock and PySCF DFT calculation or PyFock grids for both PyFock and PySCF DFT calculaiton. Using PySCF grids is recommended as those are more efficient and also makes the comparison with PySCF consistent.")
|
| 454 |
compare_pyscf = st.checkbox("Compare with PySCF (may take longer)", value=False, help="Runs a KS-DFT calculation using same settings in PySCF for energy comparison.")
|
| 455 |
|
|
|
|
| 449 |
|
| 450 |
max_iterations = st.number_input("Max Iterations:", min_value=1, max_value=16, value=14)
|
| 451 |
conv_crit = st.number_input("Convergence Criterion:", min_value=1e-7, max_value=1e-3, value=1e-6, format="%.1e")
|
| 452 |
+
ncores = 2#st.number_input("Number of Cores:", min_value=1, max_value=8, value=4)
|
| 453 |
use_pyscf_grids = st.checkbox("Use PySCF Grids", value=True, help="Use either PySCF grids for both PyFock and PySCF DFT calculation or PyFock grids for both PyFock and PySCF DFT calculaiton. Using PySCF grids is recommended as those are more efficient and also makes the comparison with PySCF consistent.")
|
| 454 |
compare_pyscf = st.checkbox("Compare with PySCF (may take longer)", value=False, help="Runs a KS-DFT calculation using same settings in PySCF for energy comparison.")
|
| 455 |
|