Esempio n. 1
0
    def test_stop_sim(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")
        with TestAreaContext("batch_sim_stop") as ta:
            ta.copy_parent_content( config_file )
            res_config = ResConfig( user_config_file = os.path.basename( config_file ))
            rsim = BatchSimulator( res_config,
                                   {"WELL_ORDER" : ["W1", "W2", "W3"],
                                    "WELL_ON_OFF" : ["W1","W2", "W3"]},
                                   ["ORDER", "ON_OFF"])

            case_name = 'MyCaseName_123'
            # Starting a simulation which should actually run through.
            ctx = rsim.start(case_name, [(2, {
                "WELL_ORDER": [1, 2, 3],
                "WELL_ON_OFF": [4, 5, 6]
            }), (1, {
                "WELL_ORDER": [7, 8, 9],
                "WELL_ON_OFF": [10, 11, 12]
            })])
            ctx.stop()
            status = ctx.status
            self.assertEqual(status.complete, 0)
            self.assertEqual(status.running, 0)
            runpath = 'storage/batch_sim/runpath/%s/realisation-0' % case_name
            self.assertTrue(os.path.exists(runpath))
Esempio n. 2
0
    def test_batch_ctx_status_failing_jobs(self):

        config_dir = os.path.join(self.SOURCE_ROOT, "../test-data/local/batch_sim")
        shutil.copytree(config_dir, "batch_sim")
        os.chdir("batch_sim")

        self.assertTrue(os.path.isfile("batch_sim_sleep_and_fail.ert"))
        res_config = ResConfig(user_config_file="batch_sim_sleep_and_fail.ert")

        external_parameters = {
            "WELL_ORDER": ("W1", "W2", "W3"),
            "WELL_ON_OFF": ("W1", "W2", "W3"),
        }
        results = ("ORDER", "ON_OFF")
        rsim = BatchSimulator(res_config, external_parameters, results)

        cases = [
            (
                0,
                {
                    "WELL_ORDER": {"W1": idx + 1, "W2": idx + 2, "W3": idx + 3},
                    "WELL_ON_OFF": {"W1": idx * 4, "W2": idx * 5, "W3": idx * 6},
                },
            )
            for idx in range(10)
        ]

        batch_ctx = rsim.start("case_name", cases)
        while batch_ctx.running():
            self.assertContextStatusOddFailures(batch_ctx)
            time.sleep(1)

        self.assertContextStatusOddFailures(batch_ctx, final_state_only=True)
Esempio n. 3
0
    def test_workflow_pre_simulation(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")
        with TestAreaContext("batch_sim_stop") as test_area:
            test_area.copy_parent_content(config_file)
            res_config = ResConfig(user_config_file=os.path.basename(config_file))

            rsim = BatchSimulator(
                res_config,
                {"WELL_ORDER": ["W1", "W2", "W3"], "WELL_ON_OFF": ["W1", "W2", "W3"]},
                ["ORDER", "ON_OFF"],
            )

            case_name = "TestCase42"
            case_data = [
                (
                    2,
                    {
                        "WELL_ORDER": {"W1": 1, "W2": 2, "W3": 3},
                        "WELL_ON_OFF": {"W1": 4, "W2": 5, "W3": 6},
                    },
                ),
                (
                    1,
                    {
                        "WELL_ORDER": {"W1": 7, "W2": 8, "W3": 9},
                        "WELL_ON_OFF": {"W1": 10, "W2": 11, "W3": 12},
                    },
                ),
            ]

            # Starting a simulation which should actually run through.
            ctx = rsim.start(case_name, case_data)
            ctx.stop()

            status = ctx.status

            self.assertEqual(status.complete, 0)
            self.assertEqual(status.running, 0)
            for idx, _ in enumerate(case_data):
                path = "storage/batch_sim/runpath/{}/realisation-{}/iter-0/realization.number".format(
                    case_name, idx
                )
                self.assertTrue(os.path.isfile(path))
                with open(path, "r") as f:
                    self.assertEqual(f.readline(1), str(idx))
Esempio n. 4
0
    def test_stop_sim(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")
        with TestAreaContext("batch_sim_stop") as test_area:
            test_area.copy_parent_content(config_file)
            res_config = ResConfig(user_config_file=os.path.basename(config_file))

            rsim = BatchSimulator(
                res_config,
                {"WELL_ORDER": ["W1", "W2", "W3"], "WELL_ON_OFF": ["W1", "W2", "W3"]},
                ["ORDER", "ON_OFF"],
            )

            case_name = "MyCaseName_123"

            # Starting a simulation which should actually run through.
            ctx = rsim.start(
                case_name,
                [
                    (
                        2,
                        {
                            "WELL_ORDER": {"W1": 1, "W2": 2, "W3": 3},
                            "WELL_ON_OFF": {"W1": 4, "W2": 5, "W3": 6},
                        },
                    ),
                    (
                        1,
                        {
                            "WELL_ORDER": {"W1": 7, "W2": 8, "W3": 9},
                            "WELL_ON_OFF": {"W1": 10, "W2": 11, "W3": 12},
                        },
                    ),
                ],
            )

            ctx.stop()
            status = ctx.status

            self.assertEqual(status.complete, 0)
            self.assertEqual(status.running, 0)

            runpath = "storage/batch_sim/runpath/%s/realisation-0" % case_name
            self.assertTrue(os.path.exists(runpath))
Esempio n. 5
0
    def test_invalid_simulator_creation(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")

        with TestAreaContext("batch_sim") as test_area:
            test_area.copy_parent_content(config_file)

            # Not valid ResConfig instance as first argument
            with self.assertRaises(ValueError):
                rsim = BatchSimulator("ARG",
                                      {
                                          "WELL_ORDER": ["W1", "W2", "W3"],
                                          "WELL_ON_OFF": ["W1", "W2", "W3"]
                                      },
                                      ["ORDER", "ON_OFF"])

            res_config = ResConfig(user_config_file=os.path.basename(config_file))

            # Control argument not a dict - Exception
            with self.assertRaises(Exception):
                rsim = BatchSimulator(res_config, ["WELL_ORDER", ["W1", "W2", "W3"]], ["ORDER"])

            rsim = BatchSimulator(res_config,
                                  {"WELL_ORDER" : ["W1", "W2", "W3"],
                                   "WELL_ON_OFF" : ["W1", "W2", "W3"]},
                                  ["ORDER", "ON_OFF"])

            # The key for one of the controls is invalid => KeyError
            with self.assertRaises(KeyError):
                rsim.start("case",
                           [
                               (2,
                                {
                                    "WELL_ORDERX": {"W1": 0, "W2": 0, "W3": 1},
                                    "WELL_ON_OFF": {"W1": 0, "W2": 0, "W3": 1},
                                }),
                               (2,
                                {
                                    "WELL_ORDER": {"W1": 0, "W2": 0, "W3": 0},
                                    "WELL_ON_OFF": {"W1": 0, "W2": 0, "W3": 1},
                                }),
                           ])

            # The key for one of the variables is invalid => KeyError
            with self.assertRaises(KeyError):
                rsim.start("case",
                           [
                               (2,
                                {
                                    "WELL_ORDER": {"W1": 0, "W4": 0, "W3": 1},
                                    "WELL_ON_OFF": {"W1": 0, "W2": 0, "W3": 1},
                                }),
                               (1,
                                {
                                    "WELL_ORDER": {"W1": 0, "W2": 0, "W3": 0},
                                    "WELL_ON_OFF": {"W1": 0, "W2": 0, "W3": 1},
                                }),
                           ])

            # The key for one of the variables is invalid => KeyError
            with self.assertRaises(KeyError):
                rsim.start("case",
                           [
                               (2,
                                {
                                    "WELL_ORDER": {"W1": 0, "W2": 0, "W3": 1, "W0": 0},
                                    "WELL_ON_OFF": {"W1": 0, "W2": 0, "W3": 1},
                                }),
                               (1,
                                {
                                    "WELL_ORDER": {"W1": 0, "W2": 0, "W3": 0},
                                    "WELL_ON_OFF": {"W1": 0, "W2": 0, "W3": 1},
                                }),
                           ])


            # Missing the key WELL_ON_OFF => KeyError
            with self.assertRaises(KeyError):
                rsim.start("case", [
                    (2, {"WELL_ORDER" : {"W1": 0, "W2": 0, "W3": 1}})])

            # One of the numeric vectors has wrong length => ValueError:
            with self.assertRaises(KeyError):
                rsim.start("case",
                           [
                               (2,
                                {
                                    "WELL_ORDER": {"W1": 0, "W2": 0, "W3": 1},
                                    "WELL_ON_OFF": {"W2": 0}
                                }),
                           ])

            # Not numeric values => Exception
            with self.assertRaises(Exception):
                rsim.start("case",
                           [
                               (2,
                                {
                                    "WELL_ORDER": {"W1": 0, "W2": 0, "W3": 1},
                                    "WELL_ON_OFF": {"W1": 0, "W2": 1, "W3": 'X'}
                                }),
                           ])

            # Not numeric values => Exception
            with self.assertRaises(Exception):
                rsim.start("case",
                           [
                               ('2',
                                {
                                    "WELL_ORDER": {"W1": 0, "W2": 0, "W3": 1},
                                    "WELL_ON_OFF" : {"W1": 0, "W2": 1, "W3": 4},
                                }),
                           ])
Esempio n. 6
0
    def test_batch_simulation(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")

        with TestAreaContext("batch_sim") as test_area:
            test_area.copy_parent_content(config_file)

            res_config = ResConfig(user_config_file=os.path.basename(config_file))
            monitor = TestMonitor()
            rsim = BatchSimulator(res_config,
                                  {
                                      "WELL_ORDER" : ["W1", "W2", "W3"],
                                      "WELL_ON_OFF" : ["W1", "W2", "W3"]
                                  },
                                  ["ORDER", "ON_OFF"],
                                  callback=monitor.start_callback)

            # Starting a simulation which should actually run through.
            case_data = [
                (2,
                 {
                     "WELL_ORDER": {"W1": 1, "W2": 2, "W3": 3},
                     "WELL_ON_OFF": {"W1": 4, "W2": 5, "W3": 6}
                 }),
                (1,
                 {
                     "WELL_ORDER": {"W1": 7, "W2": 8, "W3": 9},
                     "WELL_ON_OFF" : {"W1": 10, "W2": 11, "W3": 12}
                 }),
            ]

            ctx = rsim.start("case", case_data)
            self.assertTrue( isinstance(ctx.status_timestamp(), datetime.datetime))
            start_time = ctx.status_timestamp()
            progress_ts = ctx.progress_timestamp()

            # Asking for results before it is complete.
            with self.assertRaises(RuntimeError):
                ctx.results()

            # Ask for status of simulation we do not have.
            with self.assertRaises(KeyError):
                ctx.job_status(1973)

            with self.assertRaises(KeyError):
                ctx.job_progress(1987)

            # Carry out simulations..
            while ctx.running():
                status = ctx.status
                time.sleep(1)
                sys.stderr.write("status: %s\n" % str(status))
                for job_index in range(len(case_data)):
                    status = ctx.job_status(job_index)
                    progress = ctx.job_progress(job_index)
                    if progress:
                        for job in progress.jobs:
                            sys.stderr.write("   %s ts: %s \n" % (str(job), ctx.progress_timestamp(job_index)))

            # Fetch and validate results
            results = ctx.results()
            self.assertEqual(len(results), 2)
            self.assertTrue( ctx.status_timestamp() > start_time )

            for result, (_, controls) in zip(results, case_data):
                self.assertEqual(sorted(["ORDER", "ON_OFF"]),
                                 sorted(result.keys()))

                for res_key, ctrl_key in (
                        ("ORDER", "WELL_ORDER"),
                        ("ON_OFF", "WELL_ON_OFF"),
                    ):

                    # The forward model job SQUARE_PARAMS will load the control
                    # values and square them before writing results to disk in
                    # the order W1, W2, W3.
                    self.assertEqual(
                        [controls[ctrl_key][var_name]**2 for var_name in ["W1", "W2", "W3"]],
                        list(result[res_key])
                        )

            self.assertTrue( isinstance(monitor.sim_context, BatchContext))
Esempio n. 7
0
    def test_create_simulator(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")
        with TestAreaContext("batch_sim") as ta:
            ta.copy_parent_content( config_file )

            # Not valid ResConfig instance as first argument
            with self.assertRaises(ValueError):
                rsim = BatchSimulator( "ARG",
                                       {"WELL_ORDER" : ["W1", "W2", "W3"],
                                        "WELL_ON_OFF" : ["W1","W2", "W3"]},
                                       ["ORDER", "ON_OFF"])

            res_config = ResConfig( user_config_file = os.path.basename( config_file ))
            # Control argument not a dict - Exception
            with self.assertRaises(Exception):
                rsim = BatchSimulator(res_config, ["WELL_ORDER", ["W1","W2","W3"]], ["ORDER"])

            rsim = BatchSimulator( res_config,
                                   {"WELL_ORDER" : ["W1", "W2", "W3"],
                                    "WELL_ON_OFF" : ["W1","W2", "W3"]},
                                   ["ORDER", "ON_OFF"])

            # The key for one of the controls is invalid => KeyError
            with self.assertRaises(KeyError):
                rsim.start("case", [ (2, {"WELL_ORDERX" : [0,0,1], "WELL_ON_OFF" : [0,0,1]}),
                                     (1, {"WELL_ORDER" : [0,0,0] , "WELL_ON_OFF" : [0,0,1]}) ])


            # Missing the key WELL_ON_OFF => ValueError
            with self.assertRaises(ValueError):
                rsim.start("case", [ (2, {"WELL_ORDER" : [0,0,1]}) ])

            # One of the numeric vectors has wrong length => ValueError:
            with self.assertRaises(ValueError):
                rsim.start("case", [ (2, {"WELL_ORDER" : [0,0,1], "WELL_ON_OFF" : [0]}) ])

            # Not numeric values => Exception
            with self.assertRaises(Exception):
                rsim.start("case", [ (2, {"WELL_ORDER" : [0,0,1], "WELL_ON_OFF" : [0,1,'X']}) ])

            # Not numeric values => Exception
            with self.assertRaises(Exception):
               rsim.start("case", [ ('2', {"WELL_ORDER" : [0,0,1], "WELL_ON_OFF" : [0,1,4]}) ])


            # Starting a simulation which should actually run through.
            ctx = rsim.start("case", [(2, {"WELL_ORDER" : [1, 2, 3], "WELL_ON_OFF" : [4,5,6]}),
                                      (1, {"WELL_ORDER" : [7, 8, 9], "WELL_ON_OFF" : [10,11,12]})])

            # Asking for results before it is complete.
            with self.assertRaises(RuntimeError):
                res = ctx.results()


            while ctx.running():
                status = ctx.status
                time.sleep(1)
                sys.stderr.write("status: %s\n" % str(status))

            res = ctx.results()
            self.assertEqual(len(res), 2)
            res0 = res[0]
            res1 = res[1]
            self.assertIn("ORDER", res0)
            self.assertIn("ON_OFF", res1)


            # The forward model job SQUARE_PARAMS will load the control values and square them
            # before writing results to disk.
            order0 = res0["ORDER"]
            for i,x in enumerate(range(1,4)):
                self.assertEqual(order0[i], x*x)

            on_off0 = res0["ON_OFF"]
            for i,x in enumerate(range(4,7)):
                self.assertEqual(on_off0[i], x*x)

            order1 = res1["ORDER"]
            for i,x in enumerate(range(7,10)):
                self.assertEqual(order1[i], x*x)

            on_off1 = res1["ON_OFF"]
            for i,x in enumerate(range(10,13)):
                self.assertEqual(on_off1[i], x*x)
Esempio n. 8
0
    def test_batch_simulation_suffixes(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")
        with TestAreaContext("batch_sim") as test_area:
            test_area.copy_parent_content(config_file)

            res_config = ResConfig(
                user_config_file=os.path.basename(config_file))
            monitor = TestMonitor()
            rsim = BatchSimulator(res_config, {
                "WELL_ORDER": {
                    "W1": ["a", "b"],
                    "W2": ["c"],
                    "W3": ["a", "b"],
                },
                "WELL_ON_OFF": ["W1", "W2", "W3"]
            }, ["ORDER", "ON_OFF"],
                                  callback=monitor.start_callback)
            # Starting a simulation which should actually run through.
            case_data = [
                (2, {
                    "WELL_ORDER": {
                        "W1": {
                            "a": 0.5,
                            "b": 0.2
                        },
                        "W2": {
                            "c": 2
                        },
                        "W3": {
                            "a": -0.5,
                            "b": -0.2
                        },
                    },
                    "WELL_ON_OFF": {
                        "W1": 4,
                        "W2": 5,
                        "W3": 6
                    }
                }),
                (1, {
                    "WELL_ORDER": {
                        "W1": {
                            "a": 0.8,
                            "b": 0.9
                        },
                        "W2": {
                            "c": 1.6
                        },
                        "W3": {
                            "a": -0.8,
                            "b": -0.9
                        },
                    },
                    "WELL_ON_OFF": {
                        "W1": 10,
                        "W2": 11,
                        "W3": 12
                    }
                }),
            ]

            ctx = rsim.start("case", case_data)
            self.assertEqual(len(case_data), len(ctx))
            _wait_for_completion(ctx)

            # Fetch and validate results
            results = ctx.results()
            self.assertEqual(len(results), 2)

            for result in results:
                self.assertEqual(sorted(["ORDER", "ON_OFF"]),
                                 sorted(result.keys()))

            keys = ("W1", "W2", "W3")
            for result, (_, controls) in zip(results, case_data):
                expected = [controls["WELL_ON_OFF"][key]**2 for key in keys]
                self.assertEqual(expected, list(result["ON_OFF"]))

                expected = [
                    v**2 for key in keys
                    for _, v in controls["WELL_ORDER"][key].items()
                ]
                for exp, act in zip(expected, list(result["ORDER"])):
                    self.assertAlmostEqual(exp, act)
Esempio n. 9
0
    def test_batch_simulation_invalid_suffixes(self):
        config_file = self.createTestPath("local/batch_sim/batch_sim.ert")
        with TestAreaContext("batch_sim") as test_area:
            test_area.copy_parent_content(config_file)
            res_config = ResConfig(
                user_config_file=os.path.basename(config_file))

            # If suffixes are given, must be all non-empty string collections
            type_err_suffixes = (
                27,
                "astring",
                b"somebytes",
                True,
                False,
                [True, False],
                None,
                range(3),
            )
            for sfx in type_err_suffixes:
                with self.assertRaises(TypeError):
                    BatchSimulator(res_config, {
                        "WELL_ORDER": {
                            "W1": ["a"],
                            "W3": sfx
                        },
                    }, ["ORDER"])
            val_err_suffixes = (
                [],
                {},
                [""],
                ["a", "a"],
            )
            for sfx in val_err_suffixes:
                with self.assertRaises(ValueError):
                    BatchSimulator(res_config, {
                        "WELL_ORDER": {
                            "W1": ["a"],
                            "W3": sfx
                        },
                    }, ["ORDER"])

            rsim = BatchSimulator(res_config, {
                "WELL_ORDER": {
                    "W1": ["a", "b"],
                    "W3": ["c"],
                },
            }, ["ORDER"])

            # suffixes not taken into account
            with self.assertRaises(KeyError):
                rsim.start("case", [(1, {"WELL_ORDER": {"W1": 3, "W3": 2}})])
            with self.assertRaises(KeyError):
                rsim.start("case", [(1, {"WELL_ORDER": {"W1": {}, "W3": {}}})])

            # wrong suffixes
            with self.assertRaises(KeyError):
                rsim.start("case", [(1, {
                    "WELL_ORDER": {
                        "W1": {
                            "a": 3,
                            "x": 3
                        },
                        "W3": {
                            "c": 2
                        },
                    }
                })])

            # missing one suffix
            with self.assertRaises(KeyError):
                rsim.start("case", [(1, {
                    "WELL_ORDER": {
                        "W1": {
                            "a": 3
                        },
                        "W3": {
                            "c": 2
                        },
                    }
                })])

            # wrong type for values
            # Exception cause atm this would raise a ctypes.ArgumentError
            # but that's an implementation detail that will hopefully change
            # not so far in the future
            with self.assertRaises(Exception):
                rsim.start("case", [(1, {
                    "WELL_ORDER": {
                        "W1": {
                            "a": "3",
                            "b": 3
                        },
                        "W3": {
                            "c": 2
                        },
                    }
                })])