17 lines
185 B
C++
17 lines
185 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
#ifndef MEM_LATENCY
|
|
#define MEM_LATENCY 18
|
|
#endif
|
|
|
|
namespace vortex {
|
|
|
|
struct Constants {
|
|
|
|
static constexpr uint32_t SMEM_DELAY = 1 + SM_ENABLE;
|
|
|
|
};
|
|
|
|
} |