{"id":26654989,"url":"https://github.com/utahplt/floattrackerexamples","last_synced_at":"2026-02-03T08:32:05.967Z","repository":{"id":143360131,"uuid":"615507022","full_name":"utahplt/FloatTrackerExamples","owner":"utahplt","description":"Examples for the FloatTracker.jl repository","archived":false,"fork":false,"pushed_at":"2024-12-07T01:27:28.000Z","size":157,"stargazers_count":1,"open_issues_count":11,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-25T21:02:39.632Z","etag":null,"topics":["floating-point","julia"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/utahplt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-03-17T21:26:53.000Z","updated_at":"2024-12-07T01:27:32.000Z","dependencies_parsed_at":"2024-12-07T02:22:54.819Z","dependency_job_id":"6eb8f849-bdf3-44af-82d0-8722b00debf4","html_url":"https://github.com/utahplt/FloatTrackerExamples","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/utahplt/FloatTrackerExamples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utahplt%2FFloatTrackerExamples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utahplt%2FFloatTrackerExamples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utahplt%2FFloatTrackerExamples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utahplt%2FFloatTrackerExamples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utahplt","download_url":"https://codeload.github.com/utahplt/FloatTrackerExamples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utahplt%2FFloatTrackerExamples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29038548,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T06:39:36.383Z","status":"ssl_error","status_checked_at":"2026-02-03T06:39:32.787Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["floating-point","julia"],"created_at":"2025-03-25T05:55:58.452Z","updated_at":"2026-02-03T08:32:05.946Z","avatar_url":"https://github.com/utahplt.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FloatTrackerExamples\n\nExamples for the [TrackedFloats.jl](https://github.com/utahplt/TrackedFloats.jl) repository (formerly `FloatTracker.jl`).\n\n# Synopsis\n\nTo install the dependencies, open up a Julia REPL and enter the package manager by typing `]`, then run the following:\n\n```\npkg\u003e activate .\npkg\u003e instantiate\n```\n\nOnce the dependencies are loaded, you can run the examples with e.g.:\n\n```\n$ julia --project=. examples/nbody.jl\n```\n\nIf the FloatTracker.jl source has updated, run the following from the package manager:\n\n```\npkg\u003e activate .\npkg\u003e up\n```\n\nYou can also add the FloatTracker.jl source as a dev dependency:\n\n```\npkg\u003e develop FloatTracker.jl\n```\n\nAnd when you want to switch back to the \"normal\" version:\n\n```\npkg\u003e free FloatTracker.jl\n```\n\nSee instructions on the [Julia package manager docs](https://pkgdocs.julialang.org/v1/getting-started/#Modifying-A-Dependency).\n\n# Description\n\n[FloatTracker.jl](https://github.com/utahplt/FloatTracker.jl) is a [Julia](https://julialang.org) library for diagnosing floating-point errors. This repository showcases how it can be used.\n\n## Examples\n\nWe've created several examples of our library in action, most utilizing existing Julia packages.\n\n### NBodySimulator.jl\n\n[NBodySimulator](https://github.com/SciML/NBodySimulator.jl) simulates n-interacting bodies.\n\n```\n$ julia --project=. examples/nbody.jl\n```\n\n### Finch.jl\n\n[Finch](https://github.com/paralab/finch) is a DSL for solving partial differential equations numerically.\n\nInstall Finch from its github repo and **NOT**  by name (`Pkg.add(\"Finch\")`), because that way\nleads to [`willow-ahrens/Finch.jl`](https://github.com/willow-ahrens/Finch.jl):\n\n```\n$ julia --project=. -e 'import Pkg; Pkg.add(\"https://github.com/paralab/Finch.git\")'\n```\n\nTo run an example:\n\n```\n$ julia --project=. examples/finch/example-advection2d-fv.jl\n```\n\n### ShallowWaters.jl\n\n[ShallowWaters.jl](https://github.com/milankl/shallowwaters.jl) is a Julia library for simulating a shallow water model. The interesting thing with this project is that the type of float used in the simulation has been parameterized, allowing us to easily inject our `TrackedFloat` type.\n\n```\n$ julia --project=. examples/shallow_waters.jl\n```\n\n# License\n\nMIT License\n\n# Authors\n\n - [Taylor Allred](https://github.com/tcallred)\n - [Ashton Wiersdorf](https://github.com/ashton314)\n - [Ben Greenman](https://github.com/bennn)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futahplt%2Ffloattrackerexamples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futahplt%2Ffloattrackerexamples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futahplt%2Ffloattrackerexamples/lists"}