Skip to content

Commit

Permalink
mv eigencuda to cudamatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeZ committed Feb 10, 2020
1 parent 6099563 commit a60dc9f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion include/cudapipeline.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef CUDA_PIPELINE__H
#define CUDA_PIPELINE__H

#include "eigencuda.hpp"
#include "cudamatrix.hpp"

/*
* \brief Perform Tensor-matrix multiplications in a GPU
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

add_library(eigencuda eigencuda.cc cudapipeline.cc)
add_library(eigencuda cudamatrix.cc cudapipeline.cc)

target_include_directories(eigencuda
PUBLIC
Expand Down
2 changes: 1 addition & 1 deletion src/eigencuda.cc → src/cudamatrix.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "eigencuda.hpp"
#include "cudamatrix.hpp"

namespace eigencuda {

Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_dot.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define BOOST_TEST_MODULE eigen_cuda

#include "eigencuda.hpp"
#include "cudamatrix.hpp"
#include "cudapipeline.hpp"
#include <boost/test/unit_test.hpp>

Expand Down

0 comments on commit a60dc9f

Please sign in to comment.