1b37545d79ca9d8a15b99c5b0fa546d55926383c,tests/regression/bench_sage.py,SAGEBenchmark,setup,#SAGEBenchmark#Any#Any#,22
Before Change
// self.tmp_dir = Path(tempfile.mkdtemp())
def setup(self, backend, gpu):
log_filename = Path("sage_sampling_{}_{}.log".format(backend, gpu))
if log_filename.exists():
return
run_path = base_path / "examples/{}/graphsage/train_sampling.py".format(backend)
bashCommand = "/opt/conda/envs/{}-ci/bin/python {} --num-workers=4 --num-epochs=16 --gpu={}".format(
After Change
self.std_log = {}
def setup(self, backend, gpu):
key_name = "{}_{}".format(backend, gpu)
if key_name in self.std_log:
return
run_path = base_path / "examples/{}/graphsage/train_sampling.py".format(backend)
bashCommand = "/opt/conda/envs/{}-ci/bin/python {} --num-workers=2 --num-epochs=16 --gpu={}".format(
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: dmlc/dgl
Commit Name: 1b37545d79ca9d8a15b99c5b0fa546d55926383c
Time: 2020-04-08
Author: VoVAllen@users.noreply.github.com
File Name: tests/regression/bench_sage.py
Class Name: SAGEBenchmark
Method Name: setup
Project Name: AIRLab-POLIMI/mushroom
Commit Name: f9540d6da262c88cd4dfa2c3d9e8c2e570ea2f11
Time: 2020-04-21
Author: boris.ilpossente@hotmail.it
File Name: mushroom_rl/algorithms/agent.py
Class Name: Agent
Method Name: load
Project Name: dmlc/dgl
Commit Name: 1b37545d79ca9d8a15b99c5b0fa546d55926383c
Time: 2020-04-08
Author: VoVAllen@users.noreply.github.com
File Name: tests/regression/bench_gcn.py
Class Name: GCNBenchmark
Method Name: setup