-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmetadata.rb
More file actions
63 lines (50 loc) · 1.72 KB
/
metadata.rb
File metadata and controls
63 lines (50 loc) · 1.72 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
name "tensorflow"
maintainer "Jim Dowling"
maintainer_email "jdowling@kth.se"
license "Apache v2.0"
description 'Installs/Configures/Runs tensorflow'
version "4.0.0"
recipe "tensorflow::install", "Install NVIDIA or AMD drivers"
recipe "tensorflow::default", "Upload Hopsworks tour examples"
depends "java", '~> 7.0.0'
depends "magic_shell", '~> 1.0.0'
depends 'apt', '~> 7.2.0'
depends 'kagent'
depends 'ndb'
depends 'hops'
depends 'conda'
%w{ ubuntu debian rhel centos }.each do |os|
supports os
end
attribute "download_url",
:description => "url for binaries",
: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"
#
# Nvidia
#
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"
#
#
# Python library versions
#
#
attribute "tensorflow/version",
:description => "tensorflow and tensorflow-gpu version to install in python base environments",
:type => "string"