Home
last modified time | relevance | path

Searched refs:phi_values (Results 1 – 8 of 8) sorted by relevance

/dports/textproc/py-gensim/gensim-4.0.1/gensim/test/
H A Dtest_ldamodel.py265 for w, phi_values in topic[2]: # list of word_phis
267 self.assertTrue(isinstance(phi_values, list))
291 for w, phi_values in topic[2]: # list of word_phis
293 self.assertTrue(isinstance(phi_values, list))
294 if len(phi_values) != 0:
310 for w, phi_values in word_phis:
312 self.assertTrue(isinstance(phi_values, list))
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/volm/conf/
H A Dvolm_conf_query.cxx202 std::vector<float> phi_values; in project() local
215 phi_values.push_back(phi); in project()
218 if (phi_values.empty()) // no vertices projects to ground in project()
224 for (float pi : phi_values) in project()
230 phi_value /= phi_values.size(); in project()
/dports/math/libmesh/libmesh-1.6.2/src/error_estimation/
H A Dexact_error_estimator.C425 const std::vector<std::vector<Real>> & phi_values = fe->get_phi(); in find_squared_element_error() local
463 u_h += phi_values[i][qp]*Uelem(i); in find_squared_element_error()
H A Dexact_solution.C603 const std::vector<std::vector<OutputShape>> & phi_values = fe->get_phi(); in _compute_error() local
670 u_h += phi_values[i][qp]*computed_system.current_solution (dof_indices[i]); in _compute_error()
/dports/textproc/py-gensim/gensim-4.0.1/gensim/models/
H A Dldamodel.py1356 phi_values = [] # contains (phi_value, topic) pairing to later be sorted
1362 phi_values.append((phis[topic_id][word_type], topic_id))
1369 sorted_phi_values = sorted(phi_values, reverse=True)
/dports/math/libmesh/libmesh-1.6.2/src/fe/
H A Dfe_base.C975 const std::vector<std::vector<OutputShape>> & phi_values = in coarsened_dof_values() local
1151 phi_values[i][qp]); in coarsened_dof_values()
1291 phi_values[i][qp]; in coarsened_dof_values()
1407 phi_values[i][qp]); in coarsened_dof_values()
/dports/lang/mono/mono-5.10.1.57/mono/mini/
H A Dmini-llvm.c175 GPtrArray *phi_values; member
6773 g_ptr_array_free (ctx->phi_values, TRUE); in free_ctx()
6835 ctx->phi_values = g_ptr_array_sized_new (256); in mono_llvm_emit_method()
6903 for (i = 0; i < ctx->phi_values->len; ++i) { in mono_llvm_emit_method()
6904 LLVMValueRef v = (LLVMValueRef)g_ptr_array_index (ctx->phi_values, i); in mono_llvm_emit_method()
7163 g_ptr_array_add (ctx->phi_values, values [ins->dreg]); in emit_method_inner()
/dports/cad/nvc/nvc-r1.5.3/src/
H A Dcgen.c3285 LLVMValueRef phi_values[] = { old_state, new_state }; in cgen_procedure() local
3287 LLVMAddIncoming(ctx.state, phi_values, phi_bbs, 2); in cgen_procedure()