From 9af9e40d5410883b44f98be65b736acd0121e6ea Mon Sep 17 00:00:00 2001 From: Alexander Raistrick Date: Tue, 8 Oct 2024 09:49:56 -0400 Subject: [PATCH] Change integration test to max 1hr jobs, dev.gin, no small objects --- tests/integration/integration_test_launch.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/integration/integration_test_launch.sh b/tests/integration/integration_test_launch.sh index c896a5d3..b143c15c 100644 --- a/tests/integration/integration_test_launch.sh +++ b/tests/integration/integration_test_launch.sh @@ -21,9 +21,9 @@ if [ "$RUN_INDOOR" -eq 1 ]; then for indoor_type in DiningRoom Bathroom Bedroom Kitchen LivingRoom; do python -m infinigen.datagen.manage_jobs --output_folder $OUTPUT_PATH/${JOBTAG}_scene_indoor_$indoor_type \ --num_scenes 3 --cleanup big_files --configs singleroom --overwrite \ - --pipeline_configs slurm monocular indoor_background_configs.gin \ + --pipeline_configs slurm_1h monocular indoor_background_configs.gin \ --pipeline_overrides get_cmd.driver_script=infinigen_examples.generate_indoors sample_scene_spec.seed_range=[0,100] slurm_submit_cmd.slurm_nodelist=$NODECONF \ - --overrides compose_indoors.terrain_enabled=True restrict_solving.restrict_parent_rooms=\[\"$indoor_type\"\] & + --overrides compose_indoors.terrain_enabled=True restrict_solving.restrict_parent_rooms=\[\"$indoor_type\"\] compose_indoors.solve_small_enabled=False & done fi @@ -32,8 +32,8 @@ if [ "$RUN_NATURE" -eq 1 ]; then for nature_type in arctic canyon cave coast coral_reef desert forest kelp_forest mountain plain river snowy_mountain under_water; do python -m infinigen.datagen.manage_jobs --output_folder $OUTPUT_PATH/${JOBTAG}_scene_nature_$nature_type \ --num_scenes 3 --cleanup big_files --overwrite \ - --configs $nature_type.gin \ - --pipeline_configs slurm monocular \ + --configs $nature_type.gin dev.gin \ + --pipeline_configs slurm_1h monocular \ --pipeline_overrides sample_scene_spec.seed_range=[0,100] & done fi