gpuwm-hex 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gpuwm_hex-0.1.0/LICENSE +202 -0
- gpuwm_hex-0.1.0/MANIFEST.in +39 -0
- gpuwm_hex-0.1.0/NOTICE +112 -0
- gpuwm_hex-0.1.0/PKG-INFO +675 -0
- gpuwm_hex-0.1.0/README.md +638 -0
- gpuwm_hex-0.1.0/docs/declared-divergences.md +127 -0
- gpuwm_hex-0.1.0/docs/init-door.md +123 -0
- gpuwm_hex-0.1.0/docs/manual/01-what-this-is.md +90 -0
- gpuwm_hex-0.1.0/docs/manual/02-quickstart.md +304 -0
- gpuwm_hex-0.1.0/docs/manual/03-concepts.md +131 -0
- gpuwm_hex-0.1.0/docs/manual/04-meshes-and-static.md +216 -0
- gpuwm_hex-0.1.0/docs/manual/05-initial-conditions.md +120 -0
- gpuwm_hex-0.1.0/docs/manual/06-forecast.md +177 -0
- gpuwm_hex-0.1.0/docs/manual/07-render.md +94 -0
- gpuwm_hex-0.1.0/docs/manual/08-troubleshooting.md +178 -0
- gpuwm_hex-0.1.0/docs/manual/09-reference.md +107 -0
- gpuwm_hex-0.1.0/docs/manual/index.md +70 -0
- gpuwm_hex-0.1.0/docs/native-free-init-admission.md +59 -0
- gpuwm_hex-0.1.0/docs/obs-referee.md +148 -0
- gpuwm_hex-0.1.0/docs/render-door.md +116 -0
- gpuwm_hex-0.1.0/docs/source-matrix.md +111 -0
- gpuwm_hex-0.1.0/evidence/EVIDENCE.md +70 -0
- gpuwm_hex-0.1.0/pyproject.toml +229 -0
- gpuwm_hex-0.1.0/setup.cfg +4 -0
- gpuwm_hex-0.1.0/src/gpuwm_hex.egg-info/PKG-INFO +675 -0
- gpuwm_hex-0.1.0/src/gpuwm_hex.egg-info/SOURCES.txt +225 -0
- gpuwm_hex-0.1.0/src/gpuwm_hex.egg-info/dependency_links.txt +1 -0
- gpuwm_hex-0.1.0/src/gpuwm_hex.egg-info/entry_points.txt +2 -0
- gpuwm_hex-0.1.0/src/gpuwm_hex.egg-info/requires.txt +16 -0
- gpuwm_hex-0.1.0/src/gpuwm_hex.egg-info/top_level.txt +1 -0
- gpuwm_hex-0.1.0/src/mpas_port/__init__.py +64 -0
- gpuwm_hex-0.1.0/src/mpas_port/__main__.py +14 -0
- gpuwm_hex-0.1.0/src/mpas_port/acoustic.py +515 -0
- gpuwm_hex-0.1.0/src/mpas_port/acoustic_v841.py +540 -0
- gpuwm_hex-0.1.0/src/mpas_port/cli.py +204 -0
- gpuwm_hex-0.1.0/src/mpas_port/config.py +574 -0
- gpuwm_hex-0.1.0/src/mpas_port/config_lts.py +182 -0
- gpuwm_hex-0.1.0/src/mpas_port/config_v841.py +511 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_acoustic.py +799 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_acoustic_lts.py +572 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_acoustic_v841.py +685 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_arwen_physics_v841.py +1593 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_backend/__init__.py +60 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_backend/compile_contract.py +414 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_backend/containers.py +867 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_backend/recovery.py +414 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_backend/runtime.py +423 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_driver.py +4642 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_driver_lts.py +698 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_dualrun.py +2042 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_dynamics_v841.py +582 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_fp32.py +229 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_ftz.py +4559 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_ftz_v841.py +1440 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_gwdo_v841.py +1659 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_horizontal.py +1659 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_horizontal_v841.py +877 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_physics_prep_v841.py +2447 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_physics_v841.py +1500 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_transport.py +1280 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_transport_v841.py +881 -0
- gpuwm_hex-0.1.0/src/mpas_port/cuda_v841.py +198 -0
- gpuwm_hex-0.1.0/src/mpas_port/damping_v841.py +112 -0
- gpuwm_hex-0.1.0/src/mpas_port/diagnostics.py +316 -0
- gpuwm_hex-0.1.0/src/mpas_port/doctor.py +503 -0
- gpuwm_hex-0.1.0/src/mpas_port/driver.py +2887 -0
- gpuwm_hex-0.1.0/src/mpas_port/dynamics.py +432 -0
- gpuwm_hex-0.1.0/src/mpas_port/dynamics_v841.py +185 -0
- gpuwm_hex-0.1.0/src/mpas_port/engines.py +420 -0
- gpuwm_hex-0.1.0/src/mpas_port/errors.py +30 -0
- gpuwm_hex-0.1.0/src/mpas_port/horizontal.py +395 -0
- gpuwm_hex-0.1.0/src/mpas_port/init_door.py +696 -0
- gpuwm_hex-0.1.0/src/mpas_port/initialization.py +2175 -0
- gpuwm_hex-0.1.0/src/mpas_port/integration.py +327 -0
- gpuwm_hex-0.1.0/src/mpas_port/integration_v841.py +28 -0
- gpuwm_hex-0.1.0/src/mpas_port/lts_v841.py +360 -0
- gpuwm_hex-0.1.0/src/mpas_port/mesh.py +1399 -0
- gpuwm_hex-0.1.0/src/mpas_port/mixing.py +929 -0
- gpuwm_hex-0.1.0/src/mpas_port/mixing_v841.py +562 -0
- gpuwm_hex-0.1.0/src/mpas_port/nomix_oracle.py +515 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/__init__.py +19 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/__main__.py +3 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/acquire.py +220 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/align.py +296 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/bootstrap.py +148 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/bundle.py +681 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/canonical.py +182 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/cli.py +221 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/errors.py +27 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/manifest.py +607 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/metrics.py +512 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/report.py +232 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/runner.py +436 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/scorecard.py +268 -0
- gpuwm_hex-0.1.0/src/mpas_port/obs_referee/treatment.py +195 -0
- gpuwm_hex-0.1.0/src/mpas_port/offcentering_v841.py +173 -0
- gpuwm_hex-0.1.0/src/mpas_port/oracle.py +289 -0
- gpuwm_hex-0.1.0/src/mpas_port/output.py +859 -0
- gpuwm_hex-0.1.0/src/mpas_port/partition_assets_v841.py +569 -0
- gpuwm_hex-0.1.0/src/mpas_port/partition_device_scheduler_v841.py +672 -0
- gpuwm_hex-0.1.0/src/mpas_port/partition_executor_v841.py +515 -0
- gpuwm_hex-0.1.0/src/mpas_port/partition_local_mesh_v841.py +507 -0
- gpuwm_hex-0.1.0/src/mpas_port/partition_net_v841.py +257 -0
- gpuwm_hex-0.1.0/src/mpas_port/partition_state_v841.py +148 -0
- gpuwm_hex-0.1.0/src/mpas_port/physics_seam.py +1763 -0
- gpuwm_hex-0.1.0/src/mpas_port/physics_seam_v841.py +672 -0
- gpuwm_hex-0.1.0/src/mpas_port/regrid.py +908 -0
- gpuwm_hex-0.1.0/src/mpas_port/render_door.py +649 -0
- gpuwm_hex-0.1.0/src/mpas_port/rust_renderer.py +2099 -0
- gpuwm_hex-0.1.0/src/mpas_port/state.py +72 -0
- gpuwm_hex-0.1.0/src/mpas_port/step_oracle.py +362 -0
- gpuwm_hex-0.1.0/src/mpas_port/terrain.py +794 -0
- gpuwm_hex-0.1.0/src/mpas_port/timestep_admission.py +197 -0
- gpuwm_hex-0.1.0/src/mpas_port/tracer_oracle.py +326 -0
- gpuwm_hex-0.1.0/src/mpas_port/transport.py +2070 -0
- gpuwm_hex-0.1.0/src/mpas_port/vector.py +877 -0
- gpuwm_hex-0.1.0/src/mpas_port/vertical.py +677 -0
- gpuwm_hex-0.1.0/src/mpas_port/vertical_spec.py +770 -0
- gpuwm_hex-0.1.0/src/mpas_port/wps_intermediate.py +521 -0
- gpuwm_hex-0.1.0/tests/conftest.py +291 -0
- gpuwm_hex-0.1.0/tests/test_capacity_copy_elisions.py +92 -0
- gpuwm_hex-0.1.0/tests/test_checkout_reproducibility.py +116 -0
- gpuwm_hex-0.1.0/tests/test_cuda_v841_full_physics_x4.py +1154 -0
- gpuwm_hex-0.1.0/tests/test_device_capacity.py +31 -0
- gpuwm_hex-0.1.0/tests/test_device_memory_capacity_tools.py +285 -0
- gpuwm_hex-0.1.0/tests/test_fullstep_projection_probe.py +66 -0
- gpuwm_hex-0.1.0/tests/test_init_door.py +188 -0
- gpuwm_hex-0.1.0/tests/test_local_timestep.py +458 -0
- gpuwm_hex-0.1.0/tests/test_mesh_validation.py +528 -0
- gpuwm_hex-0.1.0/tests/test_native_free_init_admission_305.py +405 -0
- gpuwm_hex-0.1.0/tests/test_obs_referee.py +278 -0
- gpuwm_hex-0.1.0/tests/test_packaging_declaration.py +342 -0
- gpuwm_hex-0.1.0/tests/test_partition_executor_v841.py +435 -0
- gpuwm_hex-0.1.0/tests/test_proof_guard_ordering.py +214 -0
- gpuwm_hex-0.1.0/tests/test_proof_guard_pins.py +428 -0
- gpuwm_hex-0.1.0/tests/test_render_door.py +206 -0
- gpuwm_hex-0.1.0/tests/test_source_manifests.py +94 -0
- gpuwm_hex-0.1.0/tests/test_vertical_artifact_met_state.py +133 -0
- gpuwm_hex-0.1.0/tools/analyze_step_divergence.py +111 -0
- gpuwm_hex-0.1.0/tools/battery/README.md +71 -0
- gpuwm_hex-0.1.0/tools/battery/asset_gates.txt +32 -0
- gpuwm_hex-0.1.0/tools/battery/cpu_files.txt +56 -0
- gpuwm_hex-0.1.0/tools/battery/gpu_gates.txt +56 -0
- gpuwm_hex-0.1.0/tools/build_2way_part_v841.py +101 -0
- gpuwm_hex-0.1.0/tools/build_frozen_authority.sh +85 -0
- gpuwm_hex-0.1.0/tools/build_nonzero_tracer_input.py +181 -0
- gpuwm_hex-0.1.0/tools/build_partition_assets_v841.py +174 -0
- gpuwm_hex-0.1.0/tools/chain_forkgate_then_c.sh +51 -0
- gpuwm_hex-0.1.0/tools/check_mpas_citations.py +877 -0
- gpuwm_hex-0.1.0/tools/compare_2gpu_invariance_v841.py +238 -0
- gpuwm_hex-0.1.0/tools/compare_native_free_vertical.py +174 -0
- gpuwm_hex-0.1.0/tools/compare_v841_compiled_endpoint.py +1298 -0
- gpuwm_hex-0.1.0/tools/compare_v841_restart_step16_dumps.py +191 -0
- gpuwm_hex-0.1.0/tools/cuda_ftz_v841_authority_pins.json +72 -0
- gpuwm_hex-0.1.0/tools/cuda_ftz_v841_binding_validator.py +232 -0
- gpuwm_hex-0.1.0/tools/cuda_ftz_v841_isolated_bootstrap.py +278 -0
- gpuwm_hex-0.1.0/tools/cuda_jw_dualrun_isolated_bootstrap.py +604 -0
- gpuwm_hex-0.1.0/tools/device_memory_capacity/README.md +147 -0
- gpuwm_hex-0.1.0/tools/device_memory_capacity/capacity_model.py +564 -0
- gpuwm_hex-0.1.0/tools/device_memory_capacity/copy_elision_accounting.py +224 -0
- gpuwm_hex-0.1.0/tools/device_memory_capacity/kernel_reservation_probe.py +277 -0
- gpuwm_hex-0.1.0/tools/device_memory_capacity/process_memory_probe.py +272 -0
- gpuwm_hex-0.1.0/tools/device_memory_capacity/runtime_ledger.py +511 -0
- gpuwm_hex-0.1.0/tools/device_memory_capacity/sibling_contamination_probe.py +231 -0
- gpuwm_hex-0.1.0/tools/diagnose_v841_restart_step16_x4.py +874 -0
- gpuwm_hex-0.1.0/tools/diagnose_v841_restart_trace_lwgate.py +44 -0
- gpuwm_hex-0.1.0/tools/dump_1gpu_step_arrays.py +98 -0
- gpuwm_hex-0.1.0/tools/evaluate_nonzero_tracer_scan.py +114 -0
- gpuwm_hex-0.1.0/tools/gate_v841_forecast_fork_equivalence.py +311 -0
- gpuwm_hex-0.1.0/tools/mpas_mesh_binding.py +695 -0
- gpuwm_hex-0.1.0/tools/mpas_operator_oracle/build_and_run.sh +16 -0
- gpuwm_hex-0.1.0/tools/mpas_operator_oracle/operator_oracle.F90 +240 -0
- gpuwm_hex-0.1.0/tools/mpas_step_oracle/README.md +23 -0
- gpuwm_hex-0.1.0/tools/mpas_step_oracle/build_manifest.py +276 -0
- gpuwm_hex-0.1.0/tools/mpas_step_oracle/extract.sh +32 -0
- gpuwm_hex-0.1.0/tools/mpas_step_oracle/extract_step_oracle.F90 +137 -0
- gpuwm_hex-0.1.0/tools/package_nonzero_tracer_oracle.py +614 -0
- gpuwm_hex-0.1.0/tools/plot_lts_evidence.py +314 -0
- gpuwm_hex-0.1.0/tools/probe_lts_fullstep_projection.py +520 -0
- gpuwm_hex-0.1.0/tools/probe_partition_local_mesh_v841.py +224 -0
- gpuwm_hex-0.1.0/tools/probe_partition_residency_v841.py +140 -0
- gpuwm_hex-0.1.0/tools/probe_v841_lw_capture_engine_inputs.py +172 -0
- gpuwm_hex-0.1.0/tools/probe_v841_lw_localize.py +233 -0
- gpuwm_hex-0.1.0/tools/probe_v841_lw_purity.py +221 -0
- gpuwm_hex-0.1.0/tools/probe_v841_lw_purity_lwfix.py +264 -0
- gpuwm_hex-0.1.0/tools/probe_v841_lw_purity_lwfix2.py +274 -0
- gpuwm_hex-0.1.0/tools/repro_v841_lw_engine_poison.py +217 -0
- gpuwm_hex-0.1.0/tools/run_cuda_backend_benchmark.py +340 -0
- gpuwm_hex-0.1.0/tools/run_cuda_ftz_contract.py +1110 -0
- gpuwm_hex-0.1.0/tools/run_cuda_ftz_v841_trust_measurement.py +2302 -0
- gpuwm_hex-0.1.0/tools/run_cuda_jw_dualrun.py +161 -0
- gpuwm_hex-0.1.0/tools/run_cuda_jw_dualrun_promotion.py +195 -0
- gpuwm_hex-0.1.0/tools/run_cuda_jw_dualrun_trust.py +2206 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_forecast.py +1846 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_forecast_2gpu.py +960 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_forecast_mesh.py +203 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_full_physics_x4.py +4156 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_jw_dualrun.py +312 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_numeric_ruler.py +3336 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_real_x4.py +1947 -0
- gpuwm_hex-0.1.0/tools/run_cuda_v841_resident_baseline_lwfix.py +178 -0
- gpuwm_hex-0.1.0/tools/run_cuda_x1_163842_stabilized_products.py +2856 -0
- gpuwm_hex-0.1.0/tools/run_forkgate.sh +48 -0
- gpuwm_hex-0.1.0/tools/run_frozen_jw.sh +330 -0
- gpuwm_hex-0.1.0/tools/run_jw_dry_day.py +562 -0
- gpuwm_hex-0.1.0/tools/run_lts_dry_gates.py +683 -0
- gpuwm_hex-0.1.0/tools/run_nonzero_tracer_authority.sh +139 -0
- gpuwm_hex-0.1.0/tools/run_obs_referee.py +18 -0
- gpuwm_hex-0.1.0/tools/run_real_gfs_cuda_forecast.py +1358 -0
- gpuwm_hex-0.1.0/tools/run_real_gfs_cuda_x1_163842.py +1460 -0
- gpuwm_hex-0.1.0/tools/run_real_gfs_forecast.py +1015 -0
- gpuwm_hex-0.1.0/tools/run_real_gfs_initialization.py +155 -0
- gpuwm_hex-0.1.0/tools/run_rust_renderer_gate.py +732 -0
- gpuwm_hex-0.1.0/tools/run_v841_compiled_endpoint_gate.py +187 -0
- gpuwm_hex-0.1.0/tools/run_v841_smagorinsky_authority_pin.py +339 -0
- gpuwm_hex-0.1.0/tools/v841_partstream_common.py +322 -0
- gpuwm_hex-0.1.0/tools/validate_cuda_x1_163842_remote_evidence.py +555 -0
- gpuwm_hex-0.1.0/verification/CANONICAL-BUNDLE-CONTRACT.md +58 -0
- gpuwm_hex-0.1.0/verification/GF-HOOK-CONTRACT.md +67 -0
- gpuwm_hex-0.1.0/verification/README.md +13 -0
- gpuwm_hex-0.1.0/verification/fixtures/build_synthetic_suite.py +410 -0
- gpuwm_hex-0.1.0/verification/manifests/obs-referee-283.production.json +461 -0
- gpuwm_hex-0.1.0/verification/schemas/gf-subsidence-treatment-v1.schema.json +66 -0
- gpuwm_hex-0.1.0/verification/schemas/normalized-artifact-receipt-v1.schema.json +53 -0
- gpuwm_hex-0.1.0/verification/vertical-specs/legacy41-v1.json +18 -0
- gpuwm_hex-0.1.0/verification/vertical-specs/native-comparison-policy.NOT-MEASURED.json +21 -0
- gpuwm_hex-0.1.0/verification/vertical-specs/tc55-v1.json +18 -0
gpuwm_hex-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
202
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# The sdist is a source distribution: it must be able to reproduce the
|
|
2
|
+
# battery, not just the import.
|
|
3
|
+
#
|
|
4
|
+
# setuptools' default file set picked up tests/test_*.py and left out
|
|
5
|
+
# tests/conftest.py, which is where all three tier gates live. An sdist in
|
|
6
|
+
# that shape ships tests that no longer know why they cannot run: the four
|
|
7
|
+
# authority tests go back to raising FileNotFoundError on a path inside the
|
|
8
|
+
# checkout that has never existed on the reader's machine, which is exactly
|
|
9
|
+
# the confusion the gates were built to end. Docs and tools/battery were
|
|
10
|
+
# absent for the same reason, so README's links pointed at nothing.
|
|
11
|
+
graft tests
|
|
12
|
+
graft docs
|
|
13
|
+
graft tools
|
|
14
|
+
|
|
15
|
+
# `verification` joins them for the same reason and it is the same defect
|
|
16
|
+
# caught one directory later: docs/obs-referee.md tells a reader to run
|
|
17
|
+
# `verification/fixtures/build_synthetic_suite.py` and to pass
|
|
18
|
+
# `verification/manifests/...json` and `verification/vertical-specs/...json`
|
|
19
|
+
# on four separate command lines, and docs/native-free-init-admission.md
|
|
20
|
+
# passes a vertical spec from the same tree. Without this line every one of
|
|
21
|
+
# those paths is a file the reader does not have, in a document that reads
|
|
22
|
+
# as though they should. Ten files, 66 KB; the schemas and the vertical
|
|
23
|
+
# specs are contracts, not receipts.
|
|
24
|
+
graft verification
|
|
25
|
+
|
|
26
|
+
# One file out of `evidence`, and only one. The receipt files themselves are
|
|
27
|
+
# deliberately not distributed, but README.md and docs/source-matrix.md both
|
|
28
|
+
# link to `evidence/EVIDENCE.md` -- it is what tells a reader that an
|
|
29
|
+
# `evidence/...` reference names the IDENTITY of a measurement rather than a
|
|
30
|
+
# file they are missing, and where the contracts those measurements are
|
|
31
|
+
# written against actually live. Without this line those two links resolve to
|
|
32
|
+
# nothing in the unpacked sdist, which is exactly the "document points at a
|
|
33
|
+
# file the reader does not have" defect the grafts above exist to prevent.
|
|
34
|
+
include evidence/EVIDENCE.md
|
|
35
|
+
|
|
36
|
+
# Compiled bytecode is a build product of the sources beside it, never an
|
|
37
|
+
# input; the same rule the working tree follows.
|
|
38
|
+
global-exclude *.pyc
|
|
39
|
+
prune **/__pycache__
|
gpuwm_hex-0.1.0/NOTICE
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
gpuwm-hex (GPU-native variable-resolution atmospheric model core)
|
|
2
|
+
Copyright 2026 ArWen contributors
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0. Vendored components and
|
|
5
|
+
upstream works from which this distribution derives retain their own
|
|
6
|
+
licenses and notices, reproduced below.
|
|
7
|
+
|
|
8
|
+
--------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
MPAS-Atmosphere (LANL / UCAR)
|
|
11
|
+
|
|
12
|
+
gpuwm-hex reimplements the dynamical core of MPAS-Atmosphere (Model for
|
|
13
|
+
Prediction Across Scales) version 8.4.1 for CUDA devices, with pinned
|
|
14
|
+
source-line citations. MPAS-Atmosphere is developed by the Los Alamos
|
|
15
|
+
National Laboratory and the University Corporation for Atmospheric
|
|
16
|
+
Research / National Center for Atmospheric Research, and is distributed
|
|
17
|
+
under the BSD-3-Clause terms reproduced at the end of this section. Those
|
|
18
|
+
terms govern the MPAS-derived portions of this distribution and travel
|
|
19
|
+
with every copy of it.
|
|
20
|
+
|
|
21
|
+
That license separately requires that derivative works be clearly marked
|
|
22
|
+
so as not to be confused with the version available from LANS and UCAR.
|
|
23
|
+
This is that marking:
|
|
24
|
+
|
|
25
|
+
- The distribution, the command and the namespace are named gpuwm-hex.
|
|
26
|
+
The MPAS name is used only to state what this software derives from
|
|
27
|
+
and what it is measured against.
|
|
28
|
+
- Neither LANS, UCAR, NCAR nor their contributors endorse this
|
|
29
|
+
software.
|
|
30
|
+
- Results from gpuwm-hex are not results from MPAS-Atmosphere. Where
|
|
31
|
+
the two are known to differ, the differences are measured, and the
|
|
32
|
+
quantities are stated in README.md.
|
|
33
|
+
|
|
34
|
+
The cumulus scheme is a different generation from the reference:
|
|
35
|
+
gpuwm-hex carries the 2018 Grell-Freitas formulation, MPAS-A v8.4.1
|
|
36
|
+
carries the 2013 ensemble fork. They differ in closure membership, in the
|
|
37
|
+
rain conversion coefficient and its temperature dependence, and in
|
|
38
|
+
whether shallow convection precipitates. Three further differences are
|
|
39
|
+
measured and declared as divergences, judged against observations: an
|
|
40
|
+
upper-band potential-temperature drift, a convective rainfall deficit,
|
|
41
|
+
and a downstream condensate surplus.
|
|
42
|
+
|
|
43
|
+
Two of the MPAS-derived operators carry a further upstream lineage, which
|
|
44
|
+
MPAS-Model distributes inside its own tree under the terms reproduced
|
|
45
|
+
below. The orographic gravity-wave-drag operator in
|
|
46
|
+
src/mpas_port/cuda_gwdo_v841.py is a reimplementation of MPAS-Model's
|
|
47
|
+
physics_wrf/module_bl_gwdo.F, which is WRF-derived, and of
|
|
48
|
+
physics_mmm/bl_gwdo.F90, the Kim/YSU orographic gravity-wave-drag and
|
|
49
|
+
flow-blocking scheme from NCAR/MMM. Those files are cited by path and line
|
|
50
|
+
in the module that reimplements them. No source from either upstream is
|
|
51
|
+
copied into this distribution; the citations record what the CUDA operator
|
|
52
|
+
was written against.
|
|
53
|
+
|
|
54
|
+
MPAS-Atmosphere license text, retained in full:
|
|
55
|
+
|
|
56
|
+
Copyright (c) 2013-2019, Los Alamos National Security, LLC (LANS) (Ocean: LA-CC-13-047;
|
|
57
|
+
Land Ice: LA-CC-13-117) and the University Corporation for Atmospheric Research (UCAR).
|
|
58
|
+
|
|
59
|
+
All rights reserved.
|
|
60
|
+
|
|
61
|
+
LANS is the operator of the Los Alamos National Laboratory under Contract No.
|
|
62
|
+
DE-AC52-06NA25396 with the U.S. Department of Energy. UCAR manages the National
|
|
63
|
+
Center for Atmospheric Research under Cooperative Agreement ATM-0753581 with the
|
|
64
|
+
National Science Foundation. The U.S. Government has rights to use, reproduce,
|
|
65
|
+
and distribute this software. NO WARRANTY, EXPRESS OR IMPLIED IS OFFERED BY
|
|
66
|
+
LANS, UCAR OR THE GOVERNMENT AND NONE OF THEM ASSUME ANY LIABILITY FOR THE USE
|
|
67
|
+
OF THIS SOFTWARE. If software is modified to produce derivative works, such
|
|
68
|
+
modified software should be clearly marked, so as not to confuse it with the
|
|
69
|
+
version available from LANS and UCAR.
|
|
70
|
+
|
|
71
|
+
Additionally, redistribution and use in source and binary forms, with or without
|
|
72
|
+
modification, are permitted provided that the following conditions are met:
|
|
73
|
+
|
|
74
|
+
1) Redistributions of source code must retain the above copyright notice, this
|
|
75
|
+
list of conditions and the following disclaimer.
|
|
76
|
+
|
|
77
|
+
2) Redistributions in binary form must reproduce the above copyright notice,
|
|
78
|
+
this list of conditions and the following disclaimer in the documentation and/or
|
|
79
|
+
other materials provided with the distribution.
|
|
80
|
+
|
|
81
|
+
3) None of the names of LANS, UCAR or the names of its contributors, if any, may
|
|
82
|
+
be used to endorse or promote products derived from this software without
|
|
83
|
+
specific prior written permission.
|
|
84
|
+
|
|
85
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
86
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
87
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
88
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
89
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
90
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
91
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
92
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
93
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
94
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
95
|
+
|
|
96
|
+
--------------------------------------------------------------------------
|
|
97
|
+
|
|
98
|
+
ArWen (Python package "gpuwm")
|
|
99
|
+
|
|
100
|
+
Every physics column in the forecast lane runs through ArWen's
|
|
101
|
+
column-batch seam. ArWen is a separate distribution under the Apache
|
|
102
|
+
License, Version 2.0, with its own NOTICE covering the WRF-, RRTMG- and
|
|
103
|
+
RRTMGP-derived assets its physics carries. It is not vendored here; it is
|
|
104
|
+
declared as a dependency and installed from its own distribution.
|
|
105
|
+
|
|
106
|
+
--------------------------------------------------------------------------
|
|
107
|
+
|
|
108
|
+
Data services (not redistributed)
|
|
109
|
+
|
|
110
|
+
Meshes, static geographical fields and initial conditions are staged by
|
|
111
|
+
the user from their providers. None of those datasets are redistributed
|
|
112
|
+
by this project; their terms are between the user and the provider.
|