Lines Matching full:args
26 args = common.parse_arguments()
27 return example_1(args)
30 def example_1(args): argument
33 Args:
34 args: Parsed command line arguments
40 dim = args.dim
41 mesh_degree = max(args.mesh_degree, args.solution_degree)
42 sol_degree = args.solution_degree
43 num_qpts = args.quadrature_points
44 …problem_size = args.problem_size if args.problem_size > 0 else (8 * 16 if args.test else 256 * 102…
48 if not args.quiet:
50 print(f" Ceed specification [-c] : {args.ceed}")
56 print(f" QFunction source [-g] : {'gallery' if args.gallery else 'user'}")
59 ceed = libceed.Ceed(args.ceed)
73 if not args.quiet:
88 if not args.quiet:
99 if args.gallery:
128 if args.gallery:
165 if not args.test: