Skip to content

Commit 9ff7d80

Browse files
authored
Revert "Change compute capablity min value (#7708)" (#7721)
1 parent 8494c18 commit 9ff7d80

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
# Copyright 2020-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
#
33
# Redistribution and use in source and binary forms, with or without
44
# modification, are permitted provided that the following conditions
@@ -42,7 +42,7 @@ option(TRITON_ENABLE_NVTX "Include NVTX support in server" OFF)
4242
option(TRITON_ENABLE_GPU "Enable GPU support in server" ON)
4343
option(TRITON_ENABLE_MALI_GPU "Enable Arm Mali GPU support in server" OFF)
4444
option(TRITON_IGPU_BUILD "Enable options for iGPU compilation in sever" OFF)
45-
set(TRITON_MIN_COMPUTE_CAPABILITY "7.5" CACHE STRING
45+
set(TRITON_MIN_COMPUTE_CAPABILITY "6.0" CACHE STRING
4646
"The minimum CUDA compute capability supported by Triton" )
4747
set(TRITON_EXTRA_LIB_PATHS "" CACHE PATH "Extra library paths for Triton Server build")
4848

qa/L0_java_memory_growth/MemoryGrowthTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
// Copyright 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
//
33
// Redistribution and use in source and binary forms, with or without
44
// modification, are permitted provided that the following conditions
@@ -34,7 +34,7 @@
3434
import org.bytedeco.tritonserver.tritonserver.*;
3535

3636
public class MemoryGrowthTest {
37-
static final double TRITON_MIN_COMPUTE_CAPABILITY = 7.5;
37+
static final double TRITON_MIN_COMPUTE_CAPABILITY = 6.0;
3838
private static boolean done = false;
3939
static float max_growth_allowed = .10f;
4040
static int max_mem_allowed = 30;

qa/L0_java_resnet/ResnetTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
// Copyright 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
//
33
// Redistribution and use in source and binary forms, with or without
44
// modification, are permitted provided that the following conditions
@@ -41,7 +41,7 @@ public class ResnetTest {
4141
// TODO: fix build to support GPU only resnet50v1.5_fp16_savedmodel
4242
//"resnet50v1.5_fp16_savedmodel",
4343
};
44-
private static final double TRITON_MIN_COMPUTE_CAPABILITY = 7.5;
44+
private static final double TRITON_MIN_COMPUTE_CAPABILITY = 6.0;
4545
private enum Backend {
4646
NONE,
4747
ONNX,

0 commit comments

Comments
 (0)