forked from logicalclocks/tensorflow-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
107 lines (81 loc) · 3.61 KB
/
metadata.rb
File metadata and controls
107 lines (81 loc) · 3.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name "tensorflow"
maintainer "Jim Dowling"
maintainer_email "jdowling@kth.se"
license "Apache v2.0"
description 'Installs/Configures/Runs tensorflow'
version "0.10.0"
recipe "tensorflow::install", "Download and compile and install tensorflow"
recipe "tensorflow::default", "Setup tensorflow"
recipe "tensorflow::serving", "Install tensorflow serving"
recipe "tensorflow::purge", "Uninstall tensorflow and cuda"
depends "kagent"
depends "java"
depends "magic_shell"
depends "ndb"
depends "hops"
%w{ ubuntu debian rhel centos }.each do |os|
supports os
end
attribute "tensorflow/user",
:description => "user parameter value",
:type => "string"
attribute "tensorflow/group",
:description => "group parameter value",
:type => "string"
attribute "tensorflow/dir",
:description => "Base installation directory",
:type => "string"
attribute "download_url",
:description => "url for binaries",
:type => "string"
attribute "tensorflow/git_url",
:description => "url for git sourcecode for tensorflow",
:type => "string"
attribute "tensorflow/install",
:description => "'src' to compile/install from source code. 'dist' to install from binaries. ",
:type => "string"
attribute "tensorflow/mpi",
:description => "'true' to install openmpi support, 'false' (default) for no MPI support. ",
:type => "string"
attribute "tensorflow/mkl",
:description => "'true' to install Intel MKL support, 'false' (default) for no support. ",
:type => "string"
attribute "tensorflow/rdma",
:description => "Used by TensorflowOnSpark. 'true' to install rdma (infiniband) support, 'false' (default) for no rdma support. ",
:type => "string"
attribute "tensorflow/tensorrt",
:description => "TensorRT is used to optimize trained models and Needs GPU support and Cuda",
:type => "string"
attribute "tensorflow/custom_url",
:description => "User-supplied URL for the tensorflow .whl binaries to be installed.",
:type => "string"
attribute "install/dir",
:description => "Set to a base directory under which we will install.",
:type => "string"
attribute "install/user",
:description => "User to install the services as",
:type => "string"
attribute "nvidia/driver_version",
:description => "NVIDIA driver version to use",
:type => "string"
attribute "cuda/accept_nvidia_download_terms",
:description => "Accept cuda licensing terms and conditions. Default: 'false'. Change to 'true' to enable cuda.",
:type => "string"
attribute "cuda/skip_test",
:description => "Dont check if there is a local nvidia card on this machine",
:type => "string"
attribute "cuda/skip_stop_xserver",
:description => "Dont restart the xserver (probably a localhost installation)",
:type => "string"
attribute "jupyter/sparkmagic/version",
:description => "Version of sparkmagic for Jupyter to install. ",
:type => 'string'
attribute "featurestore/examples_version",
:description => "Version of feature store tour artifacts.",
:type => 'string'
attribute "featurestore/hops_featurestore_demo_dir",
:description => "Directory to put feature store tour artifacts",
:type => 'string'
attribute "featurestore/hops_featurestore_demo_url",
:description => "URL to dowload featurestore tour artifacts",
:type => 'string'