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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
use std::path::PathBuf;
use cmake;
use dirs;
use git2::build::RepoBuilder;
use thiserror::Error;
use tracing::{self, info};
use super::targets::Target;
const TVM_REPO: &'static str = "https://github.com/apache/tvm";
const DEFAULT_BRANCH: &'static str = "main";
#[derive(Debug, Error)]
pub enum Error {
#[error("{0}")]
Git2(#[from] git2::Error),
#[error("{0}")]
IoError(#[from] std::io::Error),
#[error("the directory does not exist: {0}")]
DirectoryNotFound(String),
#[error("the requested revision ({revision}) and repository ({repository}) combination does not exist.")]
RevisionNotFound {
revision: String,
repository: String,
},
}
#[derive(Debug)]
pub struct BuildConfig {
pub repository: Option<String>,
pub repository_path: Option<String>,
pub output_path: Option<String>,
pub branch: Option<String>,
pub verbose: bool,
pub clean: bool,
}
impl std::default::Default for BuildConfig {
fn default() -> BuildConfig {
BuildConfig {
repository: None,
repository_path: None,
output_path: None,
branch: None,
verbose: false,
clean: false,
}
}
}
pub struct Revision {
revision: String,
}
pub(crate) fn tvm_build_directory() -> PathBuf {
let home_dir = dirs::home_dir().expect("requires a home directory");
home_dir.join(".tvm_build")
}
impl BuildConfig {
pub fn get_revision(&self) -> Result<Revision, Error> {
info!("tvm_build::build");
let repository_url = self.repository.clone().unwrap_or(TVM_REPO.into());
let branch = self.branch.clone().unwrap_or(DEFAULT_BRANCH.into());
let revision = Revision::new(branch);
let revision_path = match &self.repository_path {
Some(path) => std::path::Path::new(&path).into(),
None => revision.path(),
};
if revision_path.exists() && self.clean && self.repository_path.is_none() {
std::fs::remove_dir_all(&revision_path)?;
}
if !revision.source_path().exists() {
let mut repo_builder = RepoBuilder::new();
repo_builder.branch(&revision.revision);
println!("{}", repository_url);
let repo_path = revision_path.join("source");
let repo = match repo_builder.clone(&repository_url, &repo_path) {
Ok(repo) => Ok(repo),
Err(e) => Err(match e.code() {
git2::ErrorCode::NotFound => Error::RevisionNotFound {
repository: repository_url,
revision: revision.revision.clone(),
},
_ => e.into(),
}),
}?;
let submodules = repo.submodules()?;
for mut submodule in submodules {
submodule.update(true, None)?;
}
}
Ok(revision)
}
}
impl Revision {
pub fn new(revision: String) -> Revision {
Revision { revision }
}
pub fn path(&self) -> PathBuf {
tvm_build_directory().join(&self.revision)
}
pub fn source_path(&self) -> PathBuf {
self.path().join("source")
}
pub fn build_path(&self) -> PathBuf {
self.path().join("build")
}
pub fn build_for(&self, build_config: &BuildConfig, target: Target) -> Result<(), Error> {
let source_path = self.source_path();
let build_path = self.build_path();
if !build_path.exists() {
std::fs::create_dir_all(build_path.clone())?;
}
let mut cmake_config = cmake::Config::new(source_path.clone());
cmake_config
.generator("Unix Makefiles")
.out_dir(build_path.clone())
.target(&target.target_str)
.host(&target.host)
.profile("Debug");
if build_config.verbose {
cmake_config.very_verbose(true);
}
cmake_config.build();
Ok(())
}
}
pub struct BuildResult {
pub revision: Revision,
}