Skip to content

Commit

Permalink
Revert "Change compute capablity min value (#7708)" (#7721)
Browse files Browse the repository at this point in the history
  • Loading branch information
mc-nv authored Oct 21, 2024
1 parent 8494c18 commit 9ff7d80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2020-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -42,7 +42,7 @@ option(TRITON_ENABLE_NVTX "Include NVTX support in server" OFF)
option(TRITON_ENABLE_GPU "Enable GPU support in server" ON)
option(TRITON_ENABLE_MALI_GPU "Enable Arm Mali GPU support in server" OFF)
option(TRITON_IGPU_BUILD "Enable options for iGPU compilation in sever" OFF)
set(TRITON_MIN_COMPUTE_CAPABILITY "7.5" CACHE STRING
set(TRITON_MIN_COMPUTE_CAPABILITY "6.0" CACHE STRING
"The minimum CUDA compute capability supported by Triton" )
set(TRITON_EXTRA_LIB_PATHS "" CACHE PATH "Extra library paths for Triton Server build")

Expand Down
4 changes: 2 additions & 2 deletions qa/L0_java_memory_growth/MemoryGrowthTest.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// Copyright 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -34,7 +34,7 @@
import org.bytedeco.tritonserver.tritonserver.*;

public class MemoryGrowthTest {
static final double TRITON_MIN_COMPUTE_CAPABILITY = 7.5;
static final double TRITON_MIN_COMPUTE_CAPABILITY = 6.0;
private static boolean done = false;
static float max_growth_allowed = .10f;
static int max_mem_allowed = 30;
Expand Down
4 changes: 2 additions & 2 deletions qa/L0_java_resnet/ResnetTest.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// Copyright 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -41,7 +41,7 @@ public class ResnetTest {
// TODO: fix build to support GPU only resnet50v1.5_fp16_savedmodel
//"resnet50v1.5_fp16_savedmodel",
};
private static final double TRITON_MIN_COMPUTE_CAPABILITY = 7.5;
private static final double TRITON_MIN_COMPUTE_CAPABILITY = 6.0;
private enum Backend {
NONE,
ONNX,
Expand Down

0 comments on commit 9ff7d80

Please sign in to comment.