| /libCEED/examples/nek/ |
| H A D | nek-examples.sh | 164 FFLAGS="$FFLAGS" USR_LFLAGS="$USR_LFLAGS" ./makenek bps >> bps.build.log 2>&1 195 rm -f bps *log* SESSION.NAME 2> /dev/null 237 printf "ttt.box\n" | $NEK5K_TOOLS_DIR/genbox 2>&1 1>>box.log || return 1 242 printf "box\n.1\n" | $NEK5K_TOOLS_DIR/genmap 2>&1 1>>box.log || return 1 247 printf "box\n$1\n" | $NEK5K_TOOLS_DIR/reatore2 2>&1 1>>box.log || return 1 285 genbb b$i &> log || { 324 …mv ${nek_ex}.${nek_spec_short}.log.${nek_np}.b${nek_box} ${nek_ex}.${nek_spec_short}.log1.${nek_np… 328 …./build/bps ${nek_ex} ${nek_spec} ${nek_test} > ${nek_ex}.${nek_spec_short}.log.${nek_np}.b${nek_b… 332 ${nek_ex}.${nek_spec_short}.log.${nek_np}.b${nek_box} 342 if [[ $(grep 'ERROR IS TOO LARGE' ${nek_ex}.${nek_spec_short}.log*) ]]; then [all …]
|
| H A D | .gitignore | 4 *log*
|
| /libCEED/tests/junit-xml/junit_xml/ |
| H A D | __init__.py | 93 log=None, argument 111 self.log = log 147 if self.log: 148 test_suite_attributes["log"] = decode(self.log, encoding) 192 if case.log: 193 test_case_attributes["log"] = decode(case.log, encoding) 380 log=None, argument 393 self.log = log
|
| /libCEED/backends/hip/ |
| H A D | ceed-hip-compile.cpp | 149 char *log; in CeedCompileCore_Hip() local 152 CeedCallBackend(CeedMalloc(log_size, &log)); in CeedCompileCore_Hip() 153 CeedCallHiprtc(ceed, hiprtcGetProgramLog(prog, log)); in CeedCompileCore_Hip() 155 return CeedError(ceed, CEED_ERROR_BACKEND, "%s\n%s", hiprtcGetErrorString(result), log); in CeedCompileCore_Hip() 159 CeedDebug(ceed, "Error: %s\nCompile log:\n%s\n", hiprtcGetErrorString(result), log); in CeedCompileCore_Hip() 161 CeedCallBackend(CeedFree(&log)); in CeedCompileCore_Hip()
|
| /libCEED/examples/mfem/ |
| H A D | bp1.cpp | 89 … int ref_levels = (int)floor((log(max_nnodes / mesh->GetNE()) - dim * log(order)) / log(2.) / dim); in main()
|
| H A D | bp3.cpp | 111 … int ref_levels = (int)floor((log(max_nnodes / mesh->GetNE()) - dim * log(order)) / log(2.) / dim); in main()
|
| /libCEED/backends/magma/tuning/ |
| H A D | generate_tuning.py | 22 def benchmark(nb, build_cmd, backend, log): argument 57 with open(log, "w") as f: 61 log,
|
| /libCEED/examples/solids/ |
| H A D | index.md | 147 \bm{\Phi} = \lambda (1 + \operatorname{trace} \bm{\epsilon}) (\log(1 + \operatorname{trace} \bm\eps… 153 \bm{\sigma} = \lambda \log(1 + \operatorname{trace} \bm\epsilon) \bm{I}_3 + 2\mu \bm{\epsilon} 277 \Phi(\bm E) &= \frac{\lambda}{2}(\log J)^2 - \mu \log J + \frac \mu 2 (\operatorname{trace} \bm C -… 278 &= \frac{\lambda}{2}(\log J)^2 - \mu \log J + \mu \operatorname{trace} \bm E, 294 \bm S = \lambda \log J \bm C^{-1} + \mu (\bm I_3 - \bm C^{-1}). 301 \bm S = \lambda \log J \bm C^{-1} + 2 \mu \bm C^{-1} \bm E, 307 Similarly, it is preferable to compute $\log J$ using `log1p`, especially in case of nearly incompr… 312 \log J = \mathtt{log1p}(u_{0,0} + u_{1,1} + u_{0,0} u_{1,1} - u_{0,1} u_{1,0}), 316 For example, if $u_{i,j} \sim 10^{-8}$, then naive computation of $\bm I_3 - \bm C^{-1}$ and $\log … 325 \Phi(\mathbb{I_1}, \mathbb{I_2}, J) = \frac{\lambda}{2}(\log J)^2 - (\mu_1 + 2\mu_2) \log J + \frac… [all …]
|
| H A D | README.md | 143 - View PETSc performance log 238 - $\lambda \log \operatorname{trace} \bm{\epsilon}$ 239 - $\lambda \log J$ 258 …- $\lambda (1 + \operatorname{trace} \bm{\epsilon}) (\log(1 + \operatorname{trace} \bm{\epsilon} )… 259 - $\frac{\lambda}{2}(\log J)^2 + \mu \operatorname{trace} \bm{E} - \mu \log J$
|
| /libCEED/examples/fluids/ |
| H A D | .gitignore | 5 *.log
|
| /libCEED/doc/papers/joss/ |
| H A D | .gitignore | 3 *.log
|
| /libCEED/julia/LibCEED.jl/ |
| H A D | .gitignore | 3 deps/build.log
|
| /libCEED/backends/cuda/ |
| H A D | ceed-cuda-compile.cpp | 190 char *log; in CeedCompileCore_Cuda() local 194 CeedCallBackend(CeedMalloc(log_size, &log)); in CeedCompileCore_Cuda() 195 CeedCallNvrtc(ceed, nvrtcGetProgramLog(prog, log)); in CeedCompileCore_Cuda() 197 return CeedError(ceed, CEED_ERROR_BACKEND, "%s\n%s", nvrtcGetErrorString(result), log); in CeedCompileCore_Cuda() 201 CeedDebug(ceed, "Error: %s\nCompile log:\n%s\n", nvrtcGetErrorString(result), log); in CeedCompileCore_Cuda() 203 CeedCallBackend(CeedFree(&log)); in CeedCompileCore_Cuda()
|
| /libCEED/tests/junit-xml/ |
| H A D | .gitignore | 23 pip-log.txt
|
| /libCEED/benchmarks/ |
| H A D | postprocess_plot.py | 149 y = asarray([y0, y1]) if log_y else exp(linspace(log(y0), log(y1)))
|
| /libCEED/ |
| H A D | .gitignore | 76 *.log
|
| /libCEED/examples/solids/src/ |
| H A D | cl-options.c | 164 app_ctx->num_levels = ceil(log(app_ctx->degree) / log(2)) + 1; in ProcessCommandLineOptions()
|
| /libCEED/examples/petsc/ |
| H A D | README.md | 37 -local_nodes 600,20000 | tee bps.log 40 The resulting log file can be read by the Python plotting scripts in `benchmarks/`.
|
| H A D | multigrid.c | 152 num_levels = ceil(log(degree) / log(2)) + 1; in main()
|
| /libCEED/examples/fluids/qfunctions/ |
| H A D | newtonian_state.h | 102 const CeedScalar entropy = log(Y.pressure) - gamma * log(rho); in StateEntropyFromPrimitive() 137 const CeedScalar log_P = -(entropy + gamma * log(-V.S_energy)) / (gamma - 1); in StatePrimitiveFromEntropy() 188 const CeedScalar entropy = log(p) - gamma * log(U.density); in StateEntropyFromConservative() 222 const CeedScalar log_rho = -(entropy + log(-V.S_energy)) / (gamma - 1); in StateConservativeFromEntropy() 241 const CeedScalar log_rho = -(entropy + log(-V.S_energy)) / (gamma - 1); in StateConservativeFromEntropy_fwd()
|
| /libCEED/examples/fluids/problems/ |
| H A D | blasius.c | 198 PetscReal logdy = (log(domain_max[1]) - log(refine_height)) / (faces[1] - N); in ModifyMesh() 211 …coords[i][1] = (1 - (coords[i][0] - domain_min[0]) * angle_coeff / domain_max[1]) * exp(log(refine… in ModifyMesh()
|
| H A D | newtonian.c | 124 const CeedScalar entropy = log(P) - gamma * log(rho); in UnitTests_Newtonian()
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | Cuda.jl | 10 :log, :log10, :log1p, :log2,
|
| /libCEED/examples/solids/qfunctions/ |
| H A D | finite-strain-neo-hookean.h | 40 sum -= log(2.) / 2; in log1p_series_shifted() 43 sum += log(2.) / 2; in log1p_series_shifted()
|
| H A D | finite-strain-mooney-rivlin.h | 45 sum -= log(2.) / 2; in log1p_series_shifted() 48 sum += log(2.) / 2; in log1p_series_shifted()
|