Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Change compute capablity min value (#7708)" #7721

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading