Move nth_element to mblas

This commit is contained in:
Tomasz Dwojak 2016-11-01 14:54:39 +00:00
parent 7b96d35fe1
commit 191e7a6835
5 changed files with 4 additions and 6 deletions

View File

@ -39,10 +39,10 @@ cuda_add_executable(
common/decoder_main.cpp
gpu/decoder/ape_penalty.cu
gpu/decoder/encoder_decoder.cu
gpu/decoder/nth_element.cu
gpu/dl4mt/encoder.cu
gpu/dl4mt/gru.cu
gpu/mblas/matrix.cu
gpu/mblas/nth_element.cu
gpu/npz_converter.cu
common/loader_factory.cpp
$<TARGET_OBJECTS:libcommon>
@ -55,8 +55,8 @@ cuda_add_library(amunmt SHARED
python/amunmt.cpp
gpu/decoder/ape_penalty.cu
gpu/decoder/encoder_decoder.cu
gpu/decoder/nth_element.cu
gpu/mblas/matrix.cu
gpu/mblas/nth_element.cu
gpu/dl4mt/encoder.cu
gpu/dl4mt/gru.cu
gpu/npz_converter.cu

View File

@ -2,7 +2,7 @@
#include "common/scorer.h"
#include "gpu/mblas/matrix.h"
#include "gpu/decoder/nth_element.h"
#include "gpu/mblas/nth_element.h"
#include <thrust/device_vector.h>
#include <thrust/functional.h>

View File

@ -27,8 +27,6 @@
#include "gpu/decoder/encoder_decoder.h"
#include "gpu/types-gpu.h"
#include "gpu/nth_element.h"
namespace GPU {
namespace mblas {

View File

@ -1,4 +1,4 @@
#include "gpu/decoder/nth_element.h"
#include "gpu/mblas/nth_element.h"
#include <iostream>