Skip to content

Commit 7e92a25

Browse files
Rename wrapper.h --> memlayout.h
1 parent 58aaa34 commit 7e92a25

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

File renamed without changes.

tests/cpu/test_cpu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "structs.h"
77
#include "vector.h"
8-
#include "wrapper.h"
8+
#include "memlayout.h"
99

1010
template<template <class> class Container, memlayout::Layout L>
1111
void initialize(std::size_t N, memlayout::Wrapper<test::Point3D, Container, L> &w) {

tests/gpu/test_cuda.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "device_ptr.h"
66
#include "structs.h"
77
#include "vector.h"
8-
#include "wrapper.h"
8+
#include "memlayout.h"
99

1010
template <memlayout::Layout L>
1111
__global__ void add(int N, memlayout::Wrapper<test::Point3D, std::span, L> w) {

tests/include/structs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STRUCTS_H
22
#define STRUCTS_H
33

4-
#include "wrapper.h"
4+
#include "memlayout.h"
55

66
namespace test {
77

0 commit comments

Comments
 (0)