/third_party/mindspore/tests/st/ops/gpu/ |
D | test_tensor_scatter_max.py | 26 self.scatter = P.TensorScatterMax() 29 return self.scatter(x, indices, update) 35 def scatter(nptype): function 81 scatter(np.float16) 87 scatter(np.float32) 99 scatter(np.int8) 105 scatter(np.int32)
|
D | test_tensor_scatter_min.py | 26 self.scatter = P.TensorScatterMin() 29 return self.scatter(x, indices, update) 35 def scatter(nptype): function 81 scatter(np.float16) 87 scatter(np.float32) 99 scatter(np.int8) 105 scatter(np.int32)
|
D | test_tensor_scatter_sub.py | 26 self.scatter = P.TensorScatterSub() 29 return self.scatter(x, indices, update) 35 def scatter(nptype): function 81 scatter(np.float16) 87 scatter(np.float32) 99 scatter(np.int8) 105 scatter(np.int32)
|
D | test_tensor_scatter_update.py | 26 self.scatter = P.TensorScatterUpdate() 29 return self.scatter(x, indices, update) 33 scatter = Net() 34 return scatter(Tensor(x), Tensor(indices), Tensor(update)).asnumpy()
|
/third_party/boost/boost/mpi/collectives/ |
D | scatter.hpp | 157 scatter(const communicator& comm, const T* in_values, T& out_value, int root) in scatter() function 164 scatter(const communicator& comm, const std::vector<T>& in_values, T& out_value, in scatter() function 168 ::boost::mpi::scatter<T>(comm, c_data(in_values), out_value, root); in scatter() 172 void scatter(const communicator& comm, T& out_value, int root) in scatter() function 180 scatter(const communicator& comm, const T* in_values, T* out_values, int n, in scatter() function 188 scatter(const communicator& comm, const std::vector<T>& in_values, in scatter() function 191 ::boost::mpi::scatter(comm, detail::c_data(in_values), out_values, n, root); in scatter() 195 void scatter(const communicator& comm, T* out_values, int n, int root) in scatter() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | Scalarizer.cpp | 202 Scatterer scatter(Instruction *Point, Value *V); 345 Scatterer ScalarizerVisitor::scatter(Instruction *Point, Value *V) { in scatter() function in ScalarizerVisitor 468 Scatterer Op = scatter(&I, I.getOperand(0)); in splitUnary() 488 Scatterer Op0 = scatter(&I, I.getOperand(0)); in splitBinary() 489 Scatterer Op1 = scatter(&I, I.getOperand(1)); in splitBinary() 540 Scattered[I] = scatter(&CI, OpI); in splitCall() 579 Scatterer Op1 = scatter(&SI, SI.getOperand(1)); in visitSelectInst() 580 Scatterer Op2 = scatter(&SI, SI.getOperand(2)); in visitSelectInst() 587 Scatterer Op0 = scatter(&SI, SI.getOperand(0)); in visitSelectInst() 632 Scatterer Base = scatter(&GEPI, Op0); in visitGetElementPtrInst() [all …]
|
/third_party/boost/boost/mpi/ |
D | collectives.hpp | 435 scatter(const communicator& comm, const std::vector<T>& in_values, T& out_value, 443 scatter(const communicator& comm, const T* in_values, T& out_value, int root); 449 void scatter(const communicator& comm, T& out_value, int root); 456 scatter(const communicator& comm, const std::vector<T>& in_values, 464 scatter(const communicator& comm, const T* in_values, T* out_values, int n, 471 void scatter(const communicator& comm, T* out_values, int n, int root);
|
/third_party/node/benchmark/ |
D | README.md | 56 `run.js` and `scatter.js` 66 * `scatter.js`: command line tool for comparing the performance 69 * `scatter.R`: R script for visualizing the output of `scatter.js` with 70 scatter plots. 97 `scatter.js`).
|
/third_party/boost/libs/mpi/src/python/ |
D | collectives.cpp | 94 object scatter(const communicator& comm, object values, int root) in scatter() function 104 boost::mpi::scatter(comm, values_vec, result, root); in scatter() 106 boost::mpi::scatter(comm, result, root); in scatter() 139 def("scatter", &scatter, in export_collectives()
|
/third_party/boost/libs/mpi/test/python/ |
D | scatter_test.py | 21 result = mpi.scatter(comm, values, root = root) 23 result = mpi.scatter(comm, root = root);
|
/third_party/boost/libs/compute/test/ |
D | test_scatter.cpp | 33 bc::scatter(input.begin(), input.end(), map.begin(), output.begin(), queue); in BOOST_AUTO_TEST_CASE() 49 bc::scatter(input.begin(), in BOOST_AUTO_TEST_CASE()
|
/third_party/libdrm/ |
D | xf86drmHash.c | 85 static unsigned long scatter[256]; in HashHash() local 91 for (i = 0; i < 256; i++) scatter[i] = drmRandom(state); in HashHash() 97 hash = (hash << 1) + scatter[tmp & 0xff]; in HashHash()
|
/third_party/mindspore/tests/ut/python/ops/ |
D | test_signature.py | 61 self.scatter = P.ScatterNdUpdate() 64 return self.scatter(self.b, idx, x)
|
/third_party/boost/libs/mpi/test/ |
D | scatter_test.cpp | 35 using boost::mpi::scatter; in scatter_test() 48 scatter(comm, values, value, root); in scatter_test() 50 scatter(comm, value, root); in scatter_test()
|
/third_party/node/doc/guides/ |
D | writing-and-running-benchmarks.md | 348 To do this use the `scatter.js` tool, this will run a benchmark multiple times 350 run `node benchmark/scatter.js`. 353 $ node benchmark/scatter.js benchmark/string_decoder/string-decoder.js > scatter.csv 357 `scatter.R` tool. Even more useful it creates an actual scatter plot when using 361 $ cat scatter.csv | Rscript benchmark/scatter.R --xaxis chunkLen --category encoding --plot scatter… 388 Because the scatter plot can only show two variables (in this case _chunkLen_ 396 $ cat scatter.csv | sed -E '1p;/([^,]+, ){3}128,/!d' | Rscript benchmark/scatter.R --xaxis chunkLen… 421 
|
/third_party/flutter/skia/modules/skottie/src/effects/ |
D | GradientEffect.cpp | 138 [adapter](const ScalarValue& scatter) { in attachGradientEffect() argument 139 adapter->setScatter(scatter); in attachGradientEffect()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | EmulatedIntrinsics.cpp | 84 void scatter(RValue<Pointer<EL>> base, RValue<T> val, RValue<Int4> offsets, RValue<Int4> mask, unsi… in scatter() function 146 scatter(base, val, offsets, mask, alignment); in Scatter() 151 scatter<Int4>(base, val, offsets, mask, alignment); in Scatter()
|
/third_party/mesa3d/src/glx/ |
D | glxhash.c | 132 static unsigned long scatter[256]; in HashHash() local 139 scatter[i] = HASH_RANDOM; in HashHash() 145 hash = (hash << 1) + scatter[tmp & 0xff]; in HashHash()
|
/third_party/boost/libs/mpi/example/ |
D | random_scatter.cpp | 29 mpi::scatter(world, all, mine, 0); in main()
|
/third_party/boost/libs/asio/doc/overview/ |
D | buffers.qbk | 13 of efficient network applications, Boost.Asio includes support for scatter-gather 16 * A scatter-read receives data into multiple buffers. 22 passed to the scatter-gather operations. 53 Finally, multiple buffers can be passed to scatter-gather operations (such as
|
/third_party/boost/libs/compute/include/boost/compute/algorithm/ |
D | random_shuffle.hpp | 80 ::boost::compute::scatter(tmp.begin(), in random_shuffle()
|
D | scatter.hpp | 88 inline void scatter(InputIterator first, in scatter() function
|
/third_party/boost/boost/compute/algorithm/ |
D | random_shuffle.hpp | 80 ::boost::compute::scatter(tmp.begin(), in random_shuffle()
|
D | scatter.hpp | 88 inline void scatter(InputIterator first, in scatter() function
|
/third_party/boost/libs/mpi/doc/ |
D | collective.qbk | 117 [section:scatter Scatter] 118 The [funcref boost::mpi::scatter `scatter`] collective scatters 146 mpi::scatter(world, all, mine, 0); 171 [endsect:scatter]
|