Home
last modified time | relevance | path

Searched refs:re (Results 1 – 19 of 19) sorted by relevance

/libCEED/examples/fluids/ !
H A DstdoutParsing.py17 import re
22 logreg = re.compile(
24 re.DOTALL | re.MULTILINE,
H A Dpytorch_pkgconfig.py5 import re
35 regex_ABI = re.compile(r'"(\S*GLIBCXX_USE_CXX11_ABI\S*)"')
H A Dindex.md715 {cite}`shurSTG2014`. Below follows a re-description of the formulation to match
/libCEED/python/ !
H A Dbuild_ceed_cffi.py9 import re
13 ceed_version_ge = re.compile(r'\s+\(!?CEED_VERSION.*')
62 if re.search("ceed-f32.h", line) is not None:
67 elif re.search("ceed-f64.h", line) is not None:
85 header = re.sub("va_list", "const char *", header)
/libCEED/backends/magma/tuning/ !
H A Dgenerate_tuning.py13 import re
28 data = re.sub(
43 data = re.sub(
137 f.write(" {" + re.sub(r"([0-9])(\s+)", r"\1,\2", row) +
151 f.write(" {" + re.sub(r"([0-9])(\s+)", r"\1,\2", row) +
/libCEED/examples/rust/mesh/src/ !
H A Dlib.rs72 let mut re = e; localVariable
74 e_xyz[d] = re % num_xyz[d];
75 re /= num_xyz[d];
/libCEED/julia/LibCEED.jl/examples/ !
H A Dcommon.jl58 re::CeedInt = e
60 exyz[d] = re%nxyz[d]
61 re ÷= nxyz[d]
H A Dex1-volume-c.jl112 re = e
114 exyz[d] = re%nxyz[d]
115 re = div(re, nxyz[d])
/libCEED/examples/ceed/ !
H A Dex1-volume-f.f9098 integer e_xyz(3), re local
126 re = i - 1
129 e_xyz(j) = mod(re, num_xyz(j))
130 re = re/num_xyz(j)
H A Dex2-surface.c357 CeedInt e_xyz[3] = {1, 1, 1}, re = e; in BuildCartesianRestriction() local
360 e_xyz[d] = re % num_xyz[d]; in BuildCartesianRestriction()
361 re /= num_xyz[d]; in BuildCartesianRestriction()
H A Dex3-volume.c326 CeedInt e_xyz[3] = {1, 1, 1}, re = e; in BuildCartesianRestriction() local
329 e_xyz[d] = re % num_xyz[d]; in BuildCartesianRestriction()
330 re /= num_xyz[d]; in BuildCartesianRestriction()
H A Dex1-volume.c337 CeedInt e_xyz[3] = {1, 1, 1}, re = e; in BuildCartesianRestriction() local
340 e_xyz[d] = re % num_xyz[d]; in BuildCartesianRestriction()
341 re /= num_xyz[d]; in BuildCartesianRestriction()
/libCEED/examples/python/ !
H A Dex_common.py127 re = e
129 e_xyz[d] = re % num_xyz[d]
130 re //= num_xyz[d]
/libCEED/tests/ !
H A Djunit_common.py11 import re
329 keyvalues_pattern = re.compile(r'''
338 ''', re.VERBOSE)
340 for match in re.finditer(keyvalues_pattern, keyvalues_str):
363 args_pattern = re.compile(r'''
368 ''', re.VERBOSE)
369 args: List[str] = re.findall(args_pattern, line)
786 …t for t in get_test_args(suite_spec.get_source_path(test)) if re.search(search, t.name, re.IGNOREC…
/libCEED/examples/rust-qfunctions/ !
H A Dex1-volume.c347 CeedInt e_xyz[3] = {1, 1, 1}, re = e; in BuildCartesianRestriction() local
350 e_xyz[d] = re % num_xyz[d]; in BuildCartesianRestriction()
351 re /= num_xyz[d]; in BuildCartesianRestriction()
/libCEED/tests/junit-xml/junit_xml/ !
H A D__init__.py6 import re
360 illegal_xml_re = re.compile('[%s]' % ''.join(illegal_ranges))
/libCEED/doc/sphinx/source/ !
H A DlibCEEDapi.md406 We'd love to talk with you if you're interested in packaging backends externally, and will work wit…
H A Dreleasenotes.md175 - Added {c:func}`CeedOperatorSetQFunctionUpdated` to facilitate QFunction data re-use between opera…
/libCEED/ !
H A DDoxyfile253 # documentation from any documented member that it re-implements.