forked from verilog-to-routing/vtr-verilog-to-routing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_quick_test.pl
executable file
·22 lines (19 loc) · 1.17 KB
/
run_quick_test.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env perl
#------------------------------------------------------------------------#
# Run an experiment on the batch system #
# - runs an experiment script #
# creates seperate directory for each circuit #
# - uses a configuration file for experiment setup #
# #
# Usage: #
# <While in the experiment directory with directory base> #
# run_experiment.pl [local|condor] #
# #
# local|condor - an optional string that is either local to run #
# locally or condor to run on condor batch system, #
# defaults to condor #
# Options: -machines [fast|slow|both] #
#------------------------------------------------------------------------#
use strict;
use Cwd;
system("./run_reg_test.pl vtr_reg_basic");