Home
last modified time | relevance | path

Searched refs:count (Results 1 – 11 of 11) sorted by relevance

/libCEED/tests/
H A Dt407-qfunction.c12 int count[2]; member
23 .count = {13, 42}, in main()
33 …CeedQFunctionContextRegisterInt32(ctx, "count", offsetof(TestContext, count), 2, "some sort of cou… in main()
85 …if (ctx_data.count[0] != 14) printf("Incorrect context data for count[0]: %" CeedInt_FMT " != 14\n… in main()
86 …if (ctx_data.count[1] != 43) printf("Incorrect context data for count[1]: %" CeedInt_FMT " != 43\n… in main()
H A Dt525-operator.c11 int count; member
28 .count = 42, in main()
41 …CeedQFunctionContextRegisterInt32(qf_ctx_sub_1, "count", offsetof(TestContext1, count), 1, "some s… in main()
53 …if (ctx_data_1.count != 43) printf("Incorrect context data for count: %" CeedInt_FMT " != 43", ctx… in main()
60 …if (values[0] != ctx_data_1.count) printf("Incorrect value found, found %d but expected %d", value… in main()
H A Djunit_common.py298 count: int = 1
301 count += 1
303 count -= 1
304 if count == 0:
/libCEED/backends/magma/tuning/
H A Dgenerate_tuning.py135 count = 0 variable
138 ("},\n" if count < len(rows) - 1 else "}\n"))
139 count += 1
149 count = 0 variable
152 ("},\n" if count < len(rows) - 1 else "}\n"))
153 count += 1
H A Dtuning.cpp79 data_interp_n = std::chrono::duration_cast<Duration>(Clock::now() - start).count(); in main()
91 data_interp_t = std::chrono::duration_cast<Duration>(Clock::now() - start).count(); in main()
112 data_grad_n = std::chrono::duration_cast<Duration>(Clock::now() - start).count(); in main()
124 data_grad_t = std::chrono::duration_cast<Duration>(Clock::now() - start).count(); in main()
/libCEED/examples/fluids/
H A Dconv_test.sh60 count=$(diff conv_test_result.csv tests-output/fluids-navierstokes-conv-euler.csv | grep "^>" | wc …
61 if [ ${count} != 0 ]; then
/libCEED/examples/deal.II/
H A Dbps-kokkos.cc232 .count() / in main()
H A Dbps-cpu.cc232 .count() / in main()
/libCEED/interface/
H A Dceed-preconditioning.c457 CeedSize num_nodes_in, num_nodes_out, local_num_entries, count = 0; in CeedOperatorAssembleSymbolicSingle() local
533 rows[offset + count] = row; in CeedOperatorAssembleSymbolicSingle()
534 cols[offset + count] = col; in CeedOperatorAssembleSymbolicSingle()
535 count++; in CeedOperatorAssembleSymbolicSingle()
541 …CeedCheck(count == local_num_entries, ceed, CEED_ERROR_MAJOR, "Error computing assembled entries"); in CeedOperatorAssembleSymbolicSingle()
719 CeedSize local_num_entries, count = 0; in CeedOperatorAssembleSingle() local
885 vals[offset + count] = elem_mat[i * elem_size_in + j]; in CeedOperatorAssembleSingle()
886 count++; in CeedOperatorAssembleSingle()
892 …CeedCheck(count == local_num_entries, CeedOperatorReturnCeed(op), CEED_ERROR_MAJOR, "Error computi… in CeedOperatorAssembleSingle()
3013 CeedInt count = 0; in CeedOperatorCreateFDMElementInverse() local
[all …]
H A Dceed.c639 CeedInt count = ceed->obj_delegate_count; in CeedSetObjectDelegate() local
642 if (count) { in CeedSetObjectDelegate()
643 CeedCall(CeedRealloc(count + 1, &ceed->obj_delegates)); in CeedSetObjectDelegate()
650 CeedCall(CeedReferenceCopy(delegate, &ceed->obj_delegates[count].delegate)); in CeedSetObjectDelegate()
651 CeedCall(CeedStringAllocCopy(obj_name, &ceed->obj_delegates[count].obj_name)); in CeedSetObjectDelegate()
/libCEED/examples/fluids/src/
H A Dsetupts.c345 PetscInt count; in TSSolve_NS() local
350 PetscCall(PetscViewerBinaryRead(viewer, &app_ctx->cont_time, 1, &count, PETSC_REAL)); in TSSolve_NS()