Skip to content
This repository was archived by the owner on Mar 22, 2019. It is now read-only.

Commit 06a615c

Browse files
committed
Use include rather than <> for bazel system
1 parent bae5004 commit 06a615c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/include/hcc_detail/hip_rng.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ THE SOFTWARE.
2121
*/
2222
#pragma once
2323

24-
#include <hcRNG/hcRNG.h>
24+
#include "../hcRNG/hcRNG.h"
2525
#include <hip/hip_runtime_api.h>
2626
#include <hip/hip_hcc.h>
27-
#include <hcRNG/mrg31k3p.h>
28-
#include <hcRNG/mrg32k3a.h>
29-
#include <hcRNG/lfsr113.h>
30-
#include <hcRNG/philox432.h>
27+
#include "../hcRNG/mrg31k3p.h"
28+
#include "../hcRNG/mrg32k3a.h"
29+
#include "../hcRNG/lfsr113.h"
30+
#include "../hcRNG/philox432.h"
3131

3232
#ifdef __cplusplus
3333
extern "C" {

lib/include/hiprng.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ enum hiprngRngType_t {
6767
// on NVCC path:
6868

6969
#if defined(__HIP_PLATFORM_HCC__) and not defined(__HIP_PLATFORM_NVCC__)
70-
#include <hcc_detail/hip_rng.h>
70+
#include "hcc_detail/hip_rng.h"
7171
#elif defined(__HIP_PLATFORM_NVCC__) and not defined(__HIP_PLATFORM_HCC__)
7272
#include <nvcc_detail/hip_rng.h>
7373
#else

0 commit comments

Comments
 (0)