HomeSort by relevance Sort by last modified time
    Searched refs:DefaultDevice (Results 1 - 25 of 29) sorted by null

1 2

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorInitializer.h 31 static void run(TensorEvaluator<Derived, DefaultDevice>& tensor,
46 static void run(TensorEvaluator<Derived, DefaultDevice>& tensor,
62 static void run(TensorEvaluator<Derived, DefaultDevice>& tensor,
71 void initialize_tensor(TensorEvaluator<Derived, DefaultDevice>& tensor,
Tensor.h 388 resize(TensorEvaluator<const Assign, DefaultDevice>(assign, DefaultDevice()).dimensions());
389 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
397 resize(TensorEvaluator<const Assign, DefaultDevice>(assign, DefaultDevice()).dimensions());
398 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
406 resize(TensorEvaluator<const Assign, DefaultDevice>(assign, DefaultDevice()).dimensions())
    [all...]
TensorIO.h 60 typedef TensorEvaluator<const TensorForcedEvalOp<const T>, DefaultDevice> Evaluator;
65 Evaluator tensor(eval, DefaultDevice());
TensorSyclRun.h 56 auto device_evaluator = Eigen::TensorEvaluator<decltype(device_expr.expr), Eigen::DefaultDevice>(device_expr.expr, Eigen::DefaultDevice());
TensorFixedSize.h 325 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
333 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
343 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
354 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
TensorDeviceDefault.h 17 struct DefaultDevice {
TensorLayoutSwap.h 90 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
100 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
TensorExecutor.h 49 class TensorExecutor<Expression, DefaultDevice, true>
54 static inline void run(const Expression& expr, const DefaultDevice& device = DefaultDevice())
56 TensorEvaluator<Expression, DefaultDevice> evaluator(expr, device);
61 const int PacketSize = unpacket_traits<typename TensorEvaluator<Expression, DefaultDevice>::PacketReturnType>::size;
TensorReductionSycl.h 159 auto device_self_evaluator = Eigen::TensorEvaluator<decltype(device_self_expr), Eigen::DefaultDevice>(device_self_expr, Eigen::DefaultDevice());
222 typedef Eigen::TensorEvaluator<decltype(device_self_expr), Eigen::DefaultDevice> DeiceSelf;
223 auto device_self_evaluator = Eigen::TensorEvaluator<decltype(device_self_expr), Eigen::DefaultDevice>(device_self_expr, Eigen::DefaultDevice());
TensorReverse.h 80 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
90 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
TensorShuffling.h 78 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
88 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
TensorMorphing.h 77 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
87 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
263 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
272 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
668 internal::TensorExecutor<const Assign, DefaultDevice>::run(
669 assign, DefaultDevice());
    [all...]
TensorMap.h 300 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
310 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
TensorRef.h 148 EIGEN_STRONG_INLINE TensorRef(const Expression& expr) : m_evaluator(new internal::TensorLazyEvaluator<Dimensions, Expression, DefaultDevice>(expr, DefaultDevice())) {
155 m_evaluator = new internal::TensorLazyEvaluator<Dimensions, Expression, DefaultDevice>(expr, DefaultDevice());
TensorStriding.h 78 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
88 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
TensorChipping.h 106 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
116 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
TensorConcatenation.h 87 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
97 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
  /external/eigen/unsupported/test/
cxx11_tensor_chipping.cpp 348 typedef TensorEvaluator<decltype(tensor.chip<4>(3)), DefaultDevice> Evaluator4;
349 auto chip = Evaluator4(tensor.chip<4>(3), DefaultDevice());
361 typedef TensorEvaluator<decltype(tensor.chip<0>(0)), DefaultDevice> Evaluator0;
362 auto chip0 = Evaluator0(tensor.chip<0>(0), DefaultDevice());
365 typedef TensorEvaluator<decltype(tensor.chip<1>(0)), DefaultDevice> Evaluator1;
366 auto chip1 = Evaluator1(tensor.chip<1>(0), DefaultDevice());
369 typedef TensorEvaluator<decltype(tensor.chip<2>(0)), DefaultDevice> Evaluator2;
370 auto chip2 = Evaluator2(tensor.chip<2>(0), DefaultDevice());
373 typedef TensorEvaluator<decltype(tensor.chip<3>(0)), DefaultDevice> Evaluator3;
374 auto chip3 = Evaluator3(tensor.chip<3>(0), DefaultDevice());
    [all...]
cxx11_tensor_morphing.cpp 81 tensor5d.reshape(dim).device(Eigen::DefaultDevice()) = tensor;
185 result.slice(second_slice, sizes12).device(Eigen::DefaultDevice()) = tensor2;
234 typedef TensorEvaluator<decltype(tensor.slice(offsets, extents)), DefaultDevice> SliceEvaluator;
235 auto slice1 = SliceEvaluator(tensor.slice(offsets, extents), DefaultDevice());
241 auto slice2 = SliceEvaluator(tensor.slice(offsets, extents), DefaultDevice());
247 auto slice2 = SliceEvaluator(tensor.slice(offsets, extents), DefaultDevice());
254 auto slice3 = SliceEvaluator(tensor.slice(offsets, extents), DefaultDevice());
261 auto slice4 = SliceEvaluator(tensor.slice(offsets, extents), DefaultDevice());
271 auto slice4 = SliceEvaluator(tensor.slice(offsets, extents), DefaultDevice());
283 auto slice5 = SliceEvaluator(tensor.slice(offsets, extents), DefaultDevice());
    [all...]
cxx11_tensor_convolution.cpp 15 using Eigen::DefaultDevice;
30 typedef TensorEvaluator<decltype(input.convolve(kernel, dims3)), DefaultDevice> Evaluator;
31 Evaluator eval(input.convolve(kernel, dims3), DefaultDevice());
cxx11_tensor_contraction.cpp 14 using Eigen::DefaultDevice;
33 typedef TensorEvaluator<decltype(mat1.contract(mat2, dims3)), DefaultDevice> Evaluator;
34 Evaluator eval(mat1.contract(mat2, dims3), DefaultDevice());
53 typedef TensorEvaluator<decltype(mat1.contract(mat2, dims4)), DefaultDevice> Evaluator2;
54 Evaluator2 eval2(mat1.contract(mat2, dims4), DefaultDevice());
68 typedef TensorEvaluator<decltype(mat1.contract(mat3, dims6)), DefaultDevice> Evaluator3;
69 Evaluator3 eval3(mat1.contract(mat3, dims6), DefaultDevice());
112 typedef TensorEvaluator<decltype(mat1.contract(mat2, dims)), DefaultDevice> Evaluator;
113 Evaluator eval(mat1.contract(mat2, dims), DefaultDevice());
146 typedef TensorEvaluator<decltype(mat4.contract(mat5, dims2)), DefaultDevice> Evaluator2
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
runtime_single_threaded_conv2d.cc 35 Eigen::DefaultDevice(), out, lhs, rhs, input_batch, input_rows,
52 Eigen::DefaultDevice(), out, lhs, rhs, input_batch, input_rows,
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestCase.hpp 48 class DefaultDevice;
92 const de::UniquePtr<DefaultDevice> m_device;
vktTestCase.cpp 328 class DefaultDevice
331 DefaultDevice (const PlatformInterface& vkPlatform, const tcu::CommandLine& cmdLine);
332 ~DefaultDevice (void);
379 DefaultDevice::DefaultDevice (const PlatformInterface& vkPlatform, const tcu::CommandLine& cmdLine)
401 DefaultDevice::~DefaultDevice (void)
405 VkQueue DefaultDevice::getUniversalQueue (void) const
412 vk::Allocator* createAllocator (DefaultDevice* device)
428 , m_device (new DefaultDevice(m_platformInterface, testCtx.getCommandLine())
    [all...]
  /external/eigen/bench/tensors/
tensor_benchmarks_cpu.cc 87 Eigen::DefaultDevice device; \
88 BenchmarkSuite<Eigen::DefaultDevice, float> suite(device, D1, D2, D3); \

Completed in 1174 milliseconds

1 2