bench_cluster/create_configs.py [193:206]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if recompute_layer:
        run_path += "_recompute_layer"
    
    # Get absoulte path for run_path
    if no_profiler:
        config_content['profiler'] = None
    else:
        config_content['profiler']['profiler_export_path'] = os.path.abspath(run_path)
    
    if not dry_run:
        if not os.path.exists(run_path):
            os.makedirs(run_path)
            with open(os.path.join(run_path, "config.yaml"), "w") as new_config:
                yaml.dump(config_content, new_config, default_flow_style=False, sort_keys=False)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bench_cluster/create_configs.py [292:305]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if recompute_layer:
                run_path += "_recompute_layer"
            
            # Get absoulte path for run_path
            if no_profiler:
                config_content['profiler'] = None
            else:
                config_content['profiler']['profiler_export_path'] = os.path.abspath(run_path)
            
            if not dry_run:
                if not os.path.exists(run_path):
                    os.makedirs(run_path)
                    with open(os.path.join(run_path, "config.yaml"), "w") as new_config:
                        yaml.dump(config_content, new_config, default_flow_style=False, sort_keys=False)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



