You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for multiple TensorFlow plugins
Signed-off-by: Janusz Lisiecki <[email protected]>
* Add tests for 1.12.0rc1
Signed-off-by: Janusz Lisiecki <[email protected]>
* Add 1.12rc1 support
Signed-off-by: Janusz Lisiecki <[email protected]>
* Add TF 1.12.rc2 support
Signed-off-by: Janusz Lisiecki <[email protected]>
* Reduce number of tested TF versions
Signed-off-by: Janusz Lisiecki <[email protected]>
Copy file name to clipboardExpand all lines: dali/CMakeLists.txt
+44-20
Original file line number
Diff line number
Diff line change
@@ -132,27 +132,51 @@ endif()
132
132
################################################
133
133
if (BUILD_TENSORFLOW)
134
134
135
-
execute_process(
136
-
COMMAND python -c "from __future__ import print_function; import sys; paths = sys.path; f = [p for p in paths if \"-packages\" in p] ; print(f[0], end=\"\")"
COMMAND python -c "from __future__ import print_function; import sys; paths = sys.path; f = [p for p in paths if \"-packages\" in p] ; print(f[0], end=\"\")"
140
+
OUTPUT_VARIABLE DIST_PACKAGES_DIR)
141
+
142
+
set(TF_PATHS)
143
+
set(TF_VER)
144
+
# obtain custom versions of TF we want to build aganist
0 commit comments