]> git.lizzy.rs Git - rust.git/commitdiff
Move LLVM simple-raytracer build to ./y.rs bench
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>
Fri, 13 Jan 2023 11:41:40 +0000 (11:41 +0000)
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>
Fri, 13 Jan 2023 11:41:40 +0000 (11:41 +0000)
cc #1290

build_system/bench.rs
build_system/prepare.rs

index 0ad8863223de6aa32568b2609fbc542322dbc4bd..e0956cb44bad325c4248f9485d2a77f09268f1a2 100644 (file)
@@ -5,7 +5,7 @@
 use super::path::{Dirs, RelPath};
 use super::prepare::GitRepo;
 use super::rustc_info::{get_file_name, get_wrapper_file_name};
-use super::utils::{hyperfine_command, is_ci, spawn_and_wait, CargoProject};
+use super::utils::{hyperfine_command, is_ci, spawn_and_wait, CargoProject, Compiler};
 
 pub(crate) static SIMPLE_RAYTRACER_REPO: GitRepo = GitRepo::github(
     "ebobby",
     "<none>",
 );
 
+// Use a separate target dir for the initial LLVM build to reduce unnecessary recompiles
+pub(crate) static SIMPLE_RAYTRACER_LLVM: CargoProject =
+    CargoProject::new(&SIMPLE_RAYTRACER_REPO.source_dir(), "simple_raytracer_llvm");
+
 pub(crate) static SIMPLE_RAYTRACER: CargoProject =
     CargoProject::new(&SIMPLE_RAYTRACER_REPO.source_dir(), "simple_raytracer");
 
@@ -28,6 +32,20 @@ fn benchmark_simple_raytracer(dirs: &Dirs) {
         std::process::exit(1);
     }
 
+    eprintln!("[LLVM BUILD] simple-raytracer");
+    let host_compiler = Compiler::host();
+    let build_cmd = SIMPLE_RAYTRACER_LLVM.build(&host_compiler, dirs);
+    spawn_and_wait(build_cmd);
+    fs::copy(
+        SIMPLE_RAYTRACER_LLVM
+            .target_dir(dirs)
+            .join(&host_compiler.triple)
+            .join("debug")
+            .join(get_file_name("main", "bin")),
+        RelPath::BUILD.to_path(dirs).join(get_file_name("raytracer_cg_llvm", "bin")),
+    )
+    .unwrap();
+
     let run_runs = env::var("RUN_RUNS")
         .unwrap_or(if is_ci() { "2" } else { "10" }.to_string())
         .parse()
index 106b06296b4b902767cf37ddd58ddb3e0a5496dc..4c92987ba5bf1431e02635cf2d391d72004b740d 100644 (file)
@@ -7,8 +7,8 @@
 
 use super::build_sysroot::{BUILD_SYSROOT, ORIG_BUILD_SYSROOT, SYSROOT_RUSTC_VERSION, SYSROOT_SRC};
 use super::path::{Dirs, RelPath};
-use super::rustc_info::{get_file_name, get_rustc_version};
-use super::utils::{copy_dir_recursively, retry_spawn_and_wait, spawn_and_wait, Compiler};
+use super::rustc_info::get_rustc_version;
+use super::utils::{copy_dir_recursively, retry_spawn_and_wait, spawn_and_wait};
 
 pub(crate) fn prepare(dirs: &Dirs) {
     if RelPath::DOWNLOAD.to_path(dirs).exists() {
@@ -23,20 +23,6 @@ pub(crate) fn prepare(dirs: &Dirs) {
     super::tests::REGEX_REPO.fetch(dirs);
     super::tests::PORTABLE_SIMD_REPO.fetch(dirs);
     super::bench::SIMPLE_RAYTRACER_REPO.fetch(dirs);
-
-    eprintln!("[LLVM BUILD] simple-raytracer");
-    let host_compiler = Compiler::host();
-    let build_cmd = super::bench::SIMPLE_RAYTRACER.build(&host_compiler, dirs);
-    spawn_and_wait(build_cmd);
-    fs::copy(
-        super::bench::SIMPLE_RAYTRACER
-            .target_dir(dirs)
-            .join(&host_compiler.triple)
-            .join("debug")
-            .join(get_file_name("main", "bin")),
-        RelPath::BUILD.to_path(dirs).join(get_file_name("raytracer_cg_llvm", "bin")),
-    )
-    .unwrap();
 }
 
 fn prepare_sysroot(dirs: &Dirs) {