Home
last modified time | relevance | path

Searched refs:num_dimensions (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/dports/science/nest/nest-simulator-3.1/pynest/nest/spatial/
H A Dhl_api_spatial.py223 def __init__(self, pos, extent=None, edge_wrap=False, num_dimensions=None): argument
224 if extent and num_dimensions:
229 if num_dimensions:
239 num_dimensions = len(extent)
242 if not num_dimensions:
246 dim_parameters = [pos for _ in range(num_dimensions)]
247 self.pos = self._parameter_list_to_dimension(dim_parameters, num_dimensions)
255 def _parameter_list_to_dimension(self, dim_parameters, num_dimensions): argument
257 if num_dimensions == 2:
259 elif num_dimensions == 3:
/dports/science/nest/nest-simulator-3.1/nestkernel/
H A Dlayer.cpp75 int num_dimensions = 0; in create_layer() local
83 num_dimensions = pos.size(); in create_layer()
95 num_dimensions = positions->get_num_dimensions(); in create_layer()
107 if ( num_dimensions == 2 ) in create_layer()
111 else if ( num_dimensions == 3 ) in create_layer()
134 int num_dimensions = shape.size(); in create_layer() local
137 if ( num_dimensions == 2 ) in create_layer()
141 else if ( num_dimensions == 3 ) in create_layer()
/dports/math/clfft/clFFT-2.12.2/src/tests/
H A Dfftw_transform.h48 plan = fftwf_plan_many_dft( num_dimensions, in make_plan()
56 lengths+max_dimension-num_dimensions, in make_plan()
66 plan = fftwf_plan_many_dft_r2c( num_dimensions, in make_plan()
74 lengths+max_dimension-num_dimensions, in make_plan()
84 plan = fftwf_plan_many_dft_c2r( num_dimensions, in make_plan()
92 lengths+max_dimension-num_dimensions, in make_plan()
138 plan = fftw_plan_many_dft( num_dimensions, in make_plan()
146 lengths+max_dimension-num_dimensions, in make_plan()
156 plan = fftw_plan_many_dft_r2c( num_dimensions, in make_plan()
164 lengths+max_dimension-num_dimensions, in make_plan()
[all …]
/dports/net/norm/norm-1.5r6/protolib/src/common/
H A DprotoSpace.cpp32 : num_dimensions(0), ord_tree(NULL), node_count(0) in ProtoSpace()
40 for (unsigned int i = 0; i < num_dimensions; i++) in ~ProtoSpace()
60 if (0 == num_dimensions) in InsertNode()
68 num_dimensions = numDimensions; in InsertNode()
70 else if (node.GetDimensions() != num_dimensions) in InsertNode()
78 for (unsigned int i = 0; i < num_dimensions; i++) in InsertNode()
98 if (0 == num_dimensions) return false; in RemoveNode()
99 ASSERT(node.GetDimensions() == num_dimensions); in RemoveNode()
101 for (unsigned int i = 0; i < num_dimensions; i++) in RemoveNode()
125 if (0 == num_dimensions) return false; in ContainsNode()
[all …]
/dports/graphics/scantailor/scantailor-advanced-1.0.16/math/spfit/
H A DOptimizer.cpp34 const size_t num_dimensions = m_numVars + num_constraints; in setConstraints() local
36 MatT<double> A(num_dimensions, num_dimensions); in setConstraints()
37 VecT<double> b(num_dimensions); in setConstraints()
52 for (size_t i = m_numVars; i < num_dimensions; ++i, ++ctr) { in setConstraints()
59 VecT<double>(num_dimensions).swap(m_x); in setConstraints()
146 const size_t num_dimensions = m_b.size(); in adjustConstraints() local
147 for (size_t i = m_numVars; i < num_dimensions; ++i) { in adjustConstraints()
/dports/databases/timescaledb/timescaledb-2.5.1/src/
H A Dsubspace_store.c34 int16 num_dimensions; member
82 Assert(space->num_dimensions < 1 || space->dimensions[0].type == DIMENSION_TYPE_OPEN); in ts_subspace_store_init()
84 sst->origin = subspace_store_internal_node_create(space->num_dimensions == 1); in ts_subspace_store_init()
85 sst->num_dimensions = space->num_dimensions; in ts_subspace_store_init()
102 Assert(hc->num_slices == store->num_dimensions); in ts_subspace_store_add()
204 Assert(target->cardinality == store->num_dimensions); in ts_subspace_store_get()
H A Dhypertable_restrict_info.c303 int num_dimensions; member
311 int num_dimensions = ht->space->num_dimensions; in ts_hypertable_restrict_info_create() local
313 palloc0(sizeof(HypertableRestrictInfo) + sizeof(DimensionRestrictInfo *) * num_dimensions); in ts_hypertable_restrict_info_create()
316 res->num_dimensions = num_dimensions; in ts_hypertable_restrict_info_create()
318 for (i = 0; i < num_dimensions; i++) in ts_hypertable_restrict_info_create()
333 for (i = 0; i < hri->num_dimensions; i++) in hypertable_restrict_info_get()
529 for (i = 0; i < hri->num_dimensions; i++) in gather_restriction_dimension_vectors()
550 Assert(list_length(dimension_vecs) == hri->num_dimensions); in gather_restriction_dimension_vectors()
561 Assert(hri->num_dimensions == ht->space->num_dimensions); in ts_hypertable_restrict_info_get_chunk_oids()
572 Assert(hri->num_dimensions == ht->space->num_dimensions); in hypertable_restrict_info_get_chunks()
[all …]
/dports/science/py-dlib/dlib-19.22/tools/python/src/
H A Dsvm_struct.cpp26 num_dimensions(num_dimensions_), in svm_struct_prob()
32 ) const { return num_dimensions; } in get_num_dimensions()
67 const long num_dimensions; member in svm_struct_prob
94 const long num_dimensions = problem.attr("num_dimensions").cast<long>(); in solve_structural_svm_problem_impl() local
104 cout << "num_dimensions: " << num_dimensions << endl; in solve_structural_svm_problem_impl()
110 svm_struct_prob<psi_type> prob(problem, num_dimensions, num_samples); in solve_structural_svm_problem_impl()
/dports/science/dlib-cpp/dlib-19.22/tools/python/src/
H A Dsvm_struct.cpp26 num_dimensions(num_dimensions_), in svm_struct_prob()
32 ) const { return num_dimensions; } in get_num_dimensions()
67 const long num_dimensions; member in svm_struct_prob
94 const long num_dimensions = problem.attr("num_dimensions").cast<long>(); in solve_structural_svm_problem_impl() local
104 cout << "num_dimensions: " << num_dimensions << endl; in solve_structural_svm_problem_impl()
110 svm_struct_prob<psi_type> prob(problem, num_dimensions, num_samples); in solve_structural_svm_problem_impl()
/dports/science/nest/nest-simulator-3.1/testsuite/pytests/test_spatial/
H A Dtest_create_spatial.py105 num_dimensions=2))
116 num_dimensions=3))
127 num_dimensions=3),
140 nest.random.uniform(), num_dimensions=2))
151 num_dimensions=3))
161 num_dimensions=2))
170 nest.random.normal(), num_dimensions=3))
180 num_dimensions=2))
189 nest.random.exponential(), num_dimensions=3))
/dports/databases/timescaledb/timescaledb-2.5.1/test/expected/
H A Dinformation_views.out5 …hypertable_schema | hypertable_name | owner | num_dimensions | num_chunks | compression_enabled | …
29 …hypertable_schema | hypertable_name | owner | num_dimensions | num_chunks | compressio…
61 …hypertable_schema | hypertable_name | owner | num_dimensions | num_chunks | compressio…
78 num_dimensions | 1
89 num_dimensions | 1
100 num_dimensions | 1
111 num_dimensions | 1
127 num_dimensions | 1
143 num_dimensions | 1
159 num_dimensions | 1
[all …]
/dports/biology/lamarc/lamarc-2.1.8/boost/multi_array/
H A Dsubarray.hpp114 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
161 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
167 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
236 assert(other.num_dimensions() == this->num_dimensions()); in operator =()
237 assert(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
248 assert(other.num_dimensions() == this->num_dimensions()); in operator =()
249 assert(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
/dports/devel/boost-docs/boost_1_72_0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/devel/hyperscan/boost_1_75_0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/devel/R-cran-BH/BH/inst/include/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/multi_array/
H A Dsubarray.hpp116 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
163 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
169 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
238 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
239 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
250 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
252 other.shape()+this->num_dimensions(), in operator =()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/databases/percona57-server/boost_1_59_0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/databases/xtrabackup/boost_1_59_0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/databases/percona57-client/boost_1_59_0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()
/dports/devel/boost-libs/boost_1_72_0/boost/multi_array/
H A Dsubarray.hpp112 if(std::equal(shape(),shape()+num_dimensions(),rhs.shape())) in operator ==()
159 size_type num_dimensions() const { return NumDims; } in num_dimensions() function in boost::detail::multi_array::const_sub_array
165 return std::accumulate(shape(),shape() + num_dimensions(), in num_elements()
234 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
235 BOOST_ASSERT(std::equal(other.shape(),other.shape()+this->num_dimensions(), in operator =()
246 BOOST_ASSERT(other.num_dimensions() == this->num_dimensions()); in operator =()
248 other.shape()+this->num_dimensions(), in operator =()

12345678910>>...16