1 #include <gtest/gtest.h> 2 3 #include <c10/core/CPUAllocator.h> 4 #include <ATen/ATen.h> 5 6 #include <ATen/test/allocator_clone_test.h> 7 TEST(AllocatorTestCPU,test_clone)8TEST(AllocatorTestCPU, test_clone) { 9 test_allocator_clone(c10::GetDefaultCPUAllocator()); 10 } 11