This repository was archived by the owner on Sep 17, 2022. It is now read-only.
File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,14 @@ const unlink = util.promisify(fs.unlink);
32
32
33
33
const BASE_URI =
34
34
'https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-' ;
35
- const CPU_DARWIN = 'cpu-darwin-x86_64-1.12.0 .tar.gz' ;
36
- const CPU_LINUX = 'cpu-linux-x86_64-1.12.0 .tar.gz' ;
37
- const GPU_LINUX = 'gpu-linux-x86_64-1.12.0 .tar.gz' ;
38
- const CPU_WINDOWS = 'cpu-windows-x86_64-1.12.0 .zip' ;
39
- const GPU_WINDOWS = 'gpu-windows-x86_64-1.12.0 .zip' ;
35
+ const CPU_DARWIN = 'cpu-darwin-x86_64-1.13.1 .tar.gz' ;
36
+ const CPU_LINUX = 'cpu-linux-x86_64-1.13.1 .tar.gz' ;
37
+ const GPU_LINUX = 'gpu-linux-x86_64-1.13.1 .tar.gz' ;
38
+ const CPU_WINDOWS = 'cpu-windows-x86_64-1.13.1 .zip' ;
39
+ const GPU_WINDOWS = 'gpu-windows-x86_64-1.13.1 .zip' ;
40
40
41
+ // TODO(kreeger): Update to TensorFlow 1.13:
42
+ // https://github.com/tensorflow/tfjs/issues/1369
41
43
const TF_WIN_HEADERS_URI =
42
44
'https://storage.googleapis.com/tf-builds/tensorflow-headers-1.12.zip' ;
43
45
@@ -52,6 +54,8 @@ function getPlatformLibtensorflowUri() {
52
54
let targetUri = BASE_URI ;
53
55
if ( platform === 'linux' ) {
54
56
if ( os . arch ( ) === 'arm' ) {
57
+ // TODO(kreeger): Update to TensorFlow 1.13:
58
+ // https://github.com/tensorflow/tfjs/issues/1370
55
59
targetUri =
56
60
'https://storage.googleapis.com/tf-builds/libtensorflow_r1_12_linux_arm.tar.gz' ;
57
61
} else {
You can’t perform that action at this time.
0 commit comments