HomeSort by relevance Sort by last modified time
    Searched refs:aligned_malloc (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/compiler/aot/
runtime.cc 31 inline void* aligned_malloc(size_t size, int minimum_alignment) { function in namespace:tensorflow::tfcompile::runtime::__anon38695
79 contiguous = aligned_malloc(total, kAlign);
  /external/eigen/unsupported/Eigen/CXX11/src/util/
MaxSizeVector.h 37 data_(static_cast<T*>(internal::aligned_malloc(n * sizeof(T)))) {
46 data_(static_cast<T*>(internal::aligned_malloc(n * sizeof(T)))) {
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceDefault.h 19 return internal::aligned_malloc(num_bytes);
TensorDeviceSycl.h 87 return internal::aligned_malloc(8);
TensorDeviceThreadPool.h 112 return internal::aligned_malloc(num_bytes);
TensorContractionThreadPool.h 361 packed_mem_ = static_cast<char*>(internal::aligned_malloc(
    [all...]
  /external/eigen/test/
dynalloc.cpp 36 char *p = (char*)internal::aligned_malloc(i);
  /external/eigen/Eigen/src/Core/util/
Memory.h 153 EIGEN_DEVICE_FUNC inline void* aligned_malloc(std::size_t size) function in namespace:Eigen::internal
173 /** \internal Frees memory allocated with aligned_malloc. */
214 return aligned_malloc(size);
299 T *result = reinterpret_cast<T*>(aligned_malloc(sizeof(T)*size));
639 : Eigen::internal::aligned_malloc(sizeof(TYPE)*SIZE) ); \
646 TYPE* NAME = (BUFFER)!=0 ? BUFFER : reinterpret_cast<TYPE*>(Eigen::internal::aligned_malloc(sizeof(TYPE)*SIZE)); \
742 return static_cast<pointer>( internal::aligned_malloc(num * sizeof(T)) );
    [all...]

Completed in 231 milliseconds