Conversation
This commit replaces the inference_engine_t type-bound, generic subtraction operator(-) with an user-defined approximate equivalence operator(==), which simplifies comparisons by eliminating the diffence_t type. The new operator is used in inference_engine_test_m instead of the difference_t, operator(-), and the norm() function.
This commit sets up for adding double-precision support by making the activation and activation-derivative bindings generic.
This commit adds double-precision versions of all tensor_map_t type-bound and constructor procedures except the default_real_from_json constructor function.
…ed-types' into parameterized-derived-types
This commit adds a generic "predict" binding to follow PyTorch nomenclature. For now, the equivalent "infer" generic binding remains to support existing code.
also make bindings generic
also update julienne dependency to 1.2.0 for double-precsion value extraction from JSON files.
also adjust demo/app/infer-aerosol.f90 to reflect the renaming of unmapped_engine_t to unmapped_network_t
Simplify class relationships
This commit 1. Renames the project from inference-engine to fiats. 2. Renames inference_engine_t to neural_network_t.
This commit renames "acceptable_engine_tag" to "minimum_acceptable_tag" in the network JSON file format.
This reverts commit 31ecd59.
Rename Inference-Engine to Fiats
Contributor
Author
|
Based on correspondences with |
ktras
reviewed
Oct 16, 2024
Co-authored-by: Katherine Rasmussen <krasmussen@lbl.gov>
ktras
reviewed
Oct 16, 2024
ktras
reviewed
Oct 16, 2024
Co-authored-by: Katherine Rasmussen <krasmussen@lbl.gov>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is will be ready to merge either when
gfortran's support for parameterized derived types (PDTs) has been fixed or we have decided to drop support forgfortran.The
developbranch that this PR will merge intomainresulted from merging three significant development branches:parallelbranch added support for automatic parallelization of training viado concurrent.parameterized-derived-typesbranch added the ability to support both default-realanddouble precisioninference without requiring recompiling.rename-inference-engine_tbranch, which globally renames the project from "Inference-Engine" to Fiats and correspondingly renames numerous program entities (files, modules, procedures, documentation, etc.)The latter three branches have been deleted in order to clarify the path forward. Starting now, new work should branch off of
develop.