forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(conan-io#12390) [tensorflow-lite] Update to 2.10.0, prepare for Cona…
…n v2, use the new CMake build helpers * [tensorflow-lite] Prepare for Conan v2, use the new CMake build helpers * [tensorflow-lite] Reorder and simplify patches * [tensorflow-lite] Remove 2.6.x series and update compiler requirements * [tensorflow-lite] Don't use collect_libs * [tensorflow-lite] Update tests Imported from conan-io#12686 * [tensorflow-lite] Don't remove pdb files (no need) * [tensorflow-lite] Use export_conandata_patches() * [tensorflow-lite] self.copy() -> tools.files.copy() * [tensorflow-lite] abseil: 20211102.0 -> 20220623.0 * [tensorflow-lite] Minor test_package fixes * [tensorflow-lite] Add layout() * [tensorflow-lite] Remove unnecessary destination arg to get() * [tensorflow-lite] Update missed reference to C++14 * [tensorflow-lite] Don't use export_conandata_patches * [tensorflow-lite] 2.9.1 -> 2.10.0 * Revert "[tensorflow-lite] Add layout()" This reverts commit 4740f6b. layout() breaks windows build. * [tensorflow-lite] Add missing dependency patch * [tensorflow-lite] Move methods * [tensorflow-lite] Re-add layout() with windows build workaround * [tensorflow-lite] Change back to using source_folder in test_v1 * [tensorflow-lite] Put the dll in the bin output folder... ...and be a bit stricter about which file patterns to copy. * Revert "[tensorflow-lite] Don't use export_conandata_patches" This reverts commit 1d946d8. * [tensorflow-lite] Don't use self in static method * [tensorflow-lite] Refactor layout() * [tensorflow-lite] self.settings -> self.info.settings in validate() * [tensorflow-lite] Explicitly specify source destination folder
- Loading branch information
Showing
13 changed files
with
136 additions
and
374 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,14 @@ | ||
sources: | ||
"2.6.0": | ||
url: "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.6.0.tar.gz" | ||
sha256: "41b32eeaddcbc02b0583660bcf508469550e4cd0f86b22d2abe72dfebeacde0f" | ||
"2.6.2": | ||
url: "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.6.2.tar.gz" | ||
sha256: "e68c1d346fc3d529653530ca346b2c62f5b31bd4fcca7ffc9c65bb39ab2f6ed3" | ||
"2.9.1": | ||
url: "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.9.1.tar.gz" | ||
sha256: "6eaf86ead73e23988fe192da1db68f4d3828bcdd0f3a9dc195935e339c95dbdc" | ||
"2.10.0": | ||
url: "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.10.0.tar.gz" | ||
sha256: "b5a1bb04c84b6fe1538377e5a1f649bb5d5f0b2e3625a3c526ff3a8af88633e8" | ||
patches: | ||
"2.9.1": | ||
- patch_file: "patches/msvc_fixes.patch" | ||
patch_description: "Fix Windows build: Apply fixes for compatibility with MSVC from master" | ||
patch_source: "https://github.com/tensorflow/tensorflow/pull/56408" | ||
patch_type: "backport" | ||
base_path: "src" | ||
- patch_file: "patches/dependencies_2_9.patch" | ||
patch_description: "Dependency compatibility: Patch CMakeLists.txt, updating package names, target names, etc" | ||
patch_type: "conan" | ||
base_path: "src" | ||
"2.10.0": | ||
- patch_file: "patches/remove_simple_memory_arena_debug_dump.patch" | ||
patch_description: "Shared build fails on Windows with error LNK2005. Resolve the conflict by removing the conflicting implementation for now." | ||
base_path: "src" | ||
"2.6.0": | ||
- patch_file: "patches/dependencies_2_6.patch" | ||
patch_description: "Dependency compatibility: Patch CMakeLists.txt, updating package names, target names, etc" | ||
- patch_file: "patches/disable_fetch_content.patch" | ||
patch_description: "Fail if the CMake build script tries to fetch external dependencies" | ||
patch_type: "conan" | ||
base_path: "src" | ||
"2.6.2": | ||
- patch_file: "patches/dependencies_2_6.patch" | ||
- patch_file: "patches/dependencies_2_10.patch" | ||
patch_description: "Dependency compatibility: Patch CMakeLists.txt, updating package names, target names, etc" | ||
patch_type: "conan" | ||
base_path: "src" |
This file contains 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
This file contains 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
Oops, something went wrong.