Home
last modified time | relevance | path

Searched refs:n_timesteps (Results 1 – 25 of 48) sorted by relevance

12

/dports/math/libmesh/libmesh-1.6.2/examples/adaptivity/adaptivity_ex2/
H A Drun.sh11 n_timesteps=25
19 …ons=" \[-read_solution\] -n_timesteps $n_timesteps -n_refinements $n_refinements -init_timestep \[…
21 options="-n_timesteps $n_timesteps -n_refinements $n_refinements -output_freq $output_freq -init_ti…
25 echo "***** Finished first" $n_timesteps "steps, now read in" \
29 options="-read_solution -n_timesteps $n_timesteps -output_freq $output_freq -init_timestep $n_times…
32 …ons=" \[-read_solution\] -n_timesteps $n_timesteps -n_refinements $n_refinements -init_timestep \[…
H A Dadaptivity_ex2.C186 unsigned int n_timesteps = 0; in main() local
190 n_timesteps = command_line.next(0); in main()
315 for (unsigned int t_step=init_timestep; t_step<(init_timestep+n_timesteps); t_step++) in main()
/dports/math/libmesh/libmesh-1.6.2/examples/adaptivity/adaptivity_ex5/
H A Drun.sh10 n_timesteps=25
18 options="-n_timesteps $n_timesteps -n_refinements $n_refinements \
48 $LIBMESH_RUN ./$executable -n_timesteps $n_timesteps -n_refinements $n_refinements \
58 echo "***** Finished first" $n_timesteps "steps, now read in" \
62 options="-read_solution -n_timesteps $n_timesteps \
63 -output_freq $output_freq -init_timestep $n_timesteps"
66 options="\[-read_solution\] -n_timesteps $n_timesteps -init_timestep \[0\|$n_timesteps\]"
H A Dadaptivity_ex5.C206 unsigned int n_timesteps = 0; in main() local
210 n_timesteps = command_line.next(0); in main()
383 for (unsigned int t_step=init_timestep; t_step<(init_timestep+n_timesteps); t_step++) in main()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/numerics/
H A Dtime_dependent.h1536 const unsigned int n_timesteps = timesteps.size(); in do_loop() local
1540 for (unsigned int step = 0; step < n_timesteps; ++step) in do_loop()
1547 init_function((&*timesteps[n_timesteps - step - 1])); in do_loop()
1565 if (n_timesteps - (step + look_ahead) < n_timesteps) in do_loop()
1571 for (unsigned int step = 0; step < n_timesteps; ++step) in do_loop()
1581 if (step + look_ahead < n_timesteps) in do_loop()
1585 if (n_timesteps > (step + look_ahead)) in do_loop()
1599 loop_function((&*timesteps[n_timesteps - step - 1])); in do_loop()
1613 if (n_timesteps - (step - look_back) <= n_timesteps) in do_loop()
1621 for (int step = n_timesteps; in do_loop()
[all …]
/dports/math/libmesh/libmesh-1.6.2/examples/adjoints/adjoints_ex5/
H A Drun.sh13 run_example "$example_name" n_timesteps=10 timesolver_tolerance=0.0 timesolver_upper_tolerance=0.0 …
15 run_example "$example_name" n_timesteps=10 timesolver_tolerance=0.0 timesolver_upper_tolerance=0.0 …
19 run_example "$example_name" n_timesteps=7 timesolver_tolerance=1.0 timesolver_upper_tolerance=1.2 s…
21 run_example "$example_name" n_timesteps=7 timesolver_tolerance=1.0 timesolver_upper_tolerance=1.2 s…
H A Dadjoints_ex5.C489 t_step != param.initial_timestep + param.n_timesteps; ++t_step) in main()
559 write_output(equation_systems, param.n_timesteps, "dual", param); in main()
566 t_step != param.initial_timestep + param.n_timesteps; ++t_step) in main()
623 write_output(equation_systems, param.n_timesteps - (t_step + 1), "dual", param); in main()
680 t_step != param.initial_timestep + param.n_timesteps; ++t_step) in main()
H A Dfemparameters.h34 unsigned int initial_timestep, n_timesteps; variable
/dports/science/lammps/lammps-stable_29Sep2021/tools/ch2lmp/other/
H A Dmkdcd_f77.f13 3 n_frames_to_skip, ith_frame, ith_dump_to_dcd, n_timesteps, local
42 3 n_frames_to_skip, ith_frame, ith_dump_to_dcd, n_timesteps, local
78 read(21,*) n_timesteps
117 3 n_frames_to_skip, ith_frame, ith_dump_to_dcd, n_timesteps, local
161 3 n_frames_to_skip, ith_frame, ith_dump_to_dcd, n_timesteps, local
215 3 n_frames_to_skip, ith_frame, ith_dump_to_dcd, n_timesteps, local
231 read(21,*) n_timesteps
267 3 n_frames_to_skip, ith_frame, ith_dump_to_dcd, n_timesteps, local
311 3 n_frames_to_skip, ith_frame, ith_dump_to_dcd, n_timesteps, local
H A Dmkdcd.f24 integer n_timesteps variable
90 read(21,*) n_timesteps
221 read(21,*) n_timesteps
/dports/misc/frugally-deep/frugally-deep-0.15.13-p0/include/fdeep/
H A Drecurrent_ops.hpp127 std::size_t n_timesteps = input.shape().width_; in lstm_impl() local
131 …const MappedRowMajorMatrixXf in = eigen_row_major_mat_from_shared_values(n_timesteps, n_features, … in lstm_impl()
154 lstm_result = {tensor(tensor_shape(n_timesteps, n_units), float_type(0))}; in lstm_impl()
158 for (EigenIndex k = 0; k < EigenIndex(n_timesteps); ++k) in lstm_impl()
174 else if (k == EigenIndex(n_timesteps) - 1) in lstm_impl()
210 const std::size_t n_timesteps = input.shape().width_; in gru_impl() local
240 …const MappedRowMajorMatrixXf x = eigen_row_major_mat_from_shared_values(n_timesteps, n_features, c… in gru_impl()
256 gru_result = { tensor(tensor_shape(n_timesteps, n_units), float_type(0)) }; in gru_impl()
260 for (EigenIndex k = 0; k < EigenIndex(n_timesteps); ++k) in gru_impl()
307 else if (k == EigenIndex(n_timesteps) - 1) in gru_impl()
/dports/devel/py-bullet3/bullet3-3.21/examples/pybullet/gym/pybullet_envs/stable_baselines/
H A Dtrain.py48 n_timesteps = args.n_timesteps variable
100 model.learn(n_timesteps, callback=callbacks)
/dports/math/libmesh/libmesh-1.6.2/examples/fem_system/fem_system_ex1/
H A Dfem_system_ex1.C100 unsigned int n_timesteps = infile("n_timesteps", 20); in main() local
185 libmesh_assert_equal_to (n_timesteps, 1); in main()
231 for (unsigned int t_step=0; t_step != n_timesteps; ++t_step) in main()
H A Dnavier.in17 # 'n_timesteps=1' in the input file, ex18.in. Finally, there is no
H A Dfem_system_ex1.in18 n_timesteps = 15
/dports/math/libmesh/libmesh-1.6.2/examples/fem_system/fem_system_ex3/
H A Dfem_system_ex3.C87 unsigned int n_timesteps = infile("n_timesteps", 1); in main() local
219 libmesh_assert_equal_to (n_timesteps, 1); in main()
296 for (unsigned int t_step=0; t_step != n_timesteps; ++t_step) in main()
H A Dfem_system_ex3.in9 n_timesteps = 5
/dports/math/libmesh/libmesh-1.6.2/examples/fem_system/fem_system_ex5/
H A Dfem_system_ex5.C91 unsigned int n_timesteps = infile("n_timesteps", 1); in main() local
290 libmesh_assert_equal_to (n_timesteps, 1); in main()
385 for (unsigned int t_step=0; t_step != n_timesteps; ++t_step) in main()
H A Dfem_system_ex5.in9 n_timesteps = 5
/dports/math/libmesh/libmesh-1.6.2/tests/solvers/
H A Dtime_solver_test_common.h28 void run_test_with_exact_soln(Real deltat, unsigned int n_timesteps) in run_test_with_exact_soln() argument
64 for (unsigned int t_step=0; t_step != n_timesteps; ++t_step) in run_test_with_exact_soln()
/dports/math/libmesh/libmesh-1.6.2/examples/adjoints/adjoints_ex2/
H A Dfemparameters.h34 unsigned int initial_timestep, n_timesteps; variable
/dports/math/libmesh/libmesh-1.6.2/examples/adjoints/adjoints_ex4/
H A Dfemparameters.h34 unsigned int initial_timestep, n_timesteps; variable
/dports/math/libmesh/libmesh-1.6.2/examples/adjoints/adjoints_ex6/
H A Dfemparameters.h34 unsigned int initial_timestep, n_timesteps; variable
/dports/math/libmesh/libmesh-1.6.2/examples/adjoints/adjoints_ex1/
H A Dfemparameters.h34 unsigned int initial_timestep, n_timesteps; variable
/dports/math/libmesh/libmesh-1.6.2/examples/adjoints/adjoints_ex3/
H A Dfemparameters.h34 unsigned int initial_timestep, n_timesteps; variable

12