burn/.gitignore

13 lines
145 B
Plaintext
Raw Normal View History

2022-09-05 02:22:56 +08:00
target
2022-07-19 07:11:45 +08:00
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
.DS_Store
.cargo/config.toml
2023-06-11 21:54:44 +08:00
[burn-compute] Add persistent cache for autotune in std environment (#1087) * Add new persistant cache to tune cache * Serialize autotune presistent cache using vectors * Properly load and save the persistent cachegf * Print an error when autotune cache cannot be loaded * Add tests for persistent cache Use the same logic as the already implemented tests * Cargo fmt * Silence clippy check about implementing default for CliMetricsRenderer * Add burn-compute feature flag autotune-persistent-cache This allow burn-compute to remain no-std compliant * debug * Git ignore .dir-locals.el files * Update documentation for compute_checksum implementation * Expect messages should be an expectation not an error message * Replace silent eprintln! by log:warn! macro * Remove clippy allow attribute * Fix typos in documentation * Move creation of additional client into the test fn that requires it * Create compute clients in test function to test different checksum * Revert tui as a default feature in burn-train cargo file * Use structs for autotune cache entries * Unpack InMemoryCacheEntry for even better readibility * Remove uneeded checksum_checked field in no-std env * Make sure that autotune cache directoy exists * Add test for autotune cache file path creation * Add prefix device info to autotune cache file * Use new compute in autotune cache integration tests This prevents race condition by always reloading the cache fir each test. * Move burn-compute rand depdencencie in dev-dependencies * Avoid creation of formatted msg except in case of actual error * Fix burn-compute unused code warning in no-std env
2024-01-06 03:19:33 +08:00
.dir-locals.el
.idea
.vscode
2023-12-23 07:11:38 +08:00
.vs
[burn-compute] Add persistent cache for autotune in std environment (#1087) * Add new persistant cache to tune cache * Serialize autotune presistent cache using vectors * Properly load and save the persistent cachegf * Print an error when autotune cache cannot be loaded * Add tests for persistent cache Use the same logic as the already implemented tests * Cargo fmt * Silence clippy check about implementing default for CliMetricsRenderer * Add burn-compute feature flag autotune-persistent-cache This allow burn-compute to remain no-std compliant * debug * Git ignore .dir-locals.el files * Update documentation for compute_checksum implementation * Expect messages should be an expectation not an error message * Replace silent eprintln! by log:warn! macro * Remove clippy allow attribute * Fix typos in documentation * Move creation of additional client into the test fn that requires it * Create compute clients in test function to test different checksum * Revert tui as a default feature in burn-train cargo file * Use structs for autotune cache entries * Unpack InMemoryCacheEntry for even better readibility * Remove uneeded checksum_checked field in no-std env * Make sure that autotune cache directoy exists * Add test for autotune cache file path creation * Add prefix device info to autotune cache file * Use new compute in autotune cache integration tests This prevents race condition by always reloading the cache fir each test. * Move burn-compute rand depdencencie in dev-dependencies * Avoid creation of formatted msg except in case of actual error * Fix burn-compute unused code warning in no-std env
2024-01-06 03:19:33 +08:00
.fleet