File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
test/run-make/nvptx-emit-asm Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ RUN apt-get install -y --no-install-recommends \
5
5
g++ make file curl ca-certificates python git \
6
6
cmake sudo gdb
7
7
8
- # TODO(denzp) : setup `ptx-linker` CI for auttomatic binary releases.
8
+ # FIXME : setup `ptx-linker` CI for automatic binary releases.
9
9
RUN curl -sL https://github.com/denzp/rust-ptx-linker/releases/download/v0.9.0-alpha/rust-ptx-linker.linux64.tar.gz | \
10
10
tar -xzvC /usr/bin
11
11
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ pub fn target() -> TargetResult {
22
22
linker : Some ( "rust-ptx-linker" . to_string ( ) ) ,
23
23
24
24
// With `ptx-linker` approach, it can be later overriden via link flags.
25
- cpu : "sm_20 " . to_string ( ) ,
25
+ cpu : "sm_30 " . to_string ( ) ,
26
26
27
- // TODO(denzp) : create tests for the atomics.
27
+ // FIXME : create tests for the atomics.
28
28
max_atomic_width : Some ( 64 ) ,
29
29
30
30
// Unwinding on CUDA is neither feasible nor useful.
@@ -51,7 +51,7 @@ pub fn target() -> TargetResult {
51
51
// This behavior is not supported by PTX ISA.
52
52
merge_functions : MergeFunctions :: Disabled ,
53
53
54
- // TODO(denzp) : enable compilation tests for the target and
54
+ // FIXME : enable compilation tests for the target and
55
55
// create the tests for this.
56
56
abi_blacklist : vec ! [
57
57
Abi :: Cdecl ,
Original file line number Diff line number Diff line change 3
3
#![ feature( abi_ptx) ]
4
4
5
5
// Verify the default CUDA arch.
6
- // CHECK: .target sm_20
6
+ // CHECK: .target sm_30
7
7
// CHECK: .address_size 64
8
8
9
9
// Verify function name doesn't contain unacceaptable characters.
You can’t perform that action at this time.
0 commit comments