File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- # Copyright 2020-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1
+ # Copyright 2020-2023 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
2
#
3
3
# Redistribution and use in source and binary forms, with or without
4
4
# modification, are permitted provided that the following conditions
@@ -42,7 +42,7 @@ option(TRITON_ENABLE_NVTX "Include NVTX support in server" OFF)
42
42
option (TRITON_ENABLE_GPU "Enable GPU support in server" ON )
43
43
option (TRITON_ENABLE_MALI_GPU "Enable Arm Mali GPU support in server" OFF )
44
44
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
46
46
"The minimum CUDA compute capability supported by Triton" )
47
47
set (TRITON_EXTRA_LIB_PATHS "" CACHE PATH "Extra library paths for Triton Server build" )
48
48
Original file line number Diff line number Diff line change 1
- // Copyright 2022-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1
+ // Copyright 2022-2023 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
2
//
3
3
// Redistribution and use in source and binary forms, with or without
4
4
// modification, are permitted provided that the following conditions
34
34
import org .bytedeco .tritonserver .tritonserver .*;
35
35
36
36
public class MemoryGrowthTest {
37
- static final double TRITON_MIN_COMPUTE_CAPABILITY = 7.5 ;
37
+ static final double TRITON_MIN_COMPUTE_CAPABILITY = 6.0 ;
38
38
private static boolean done = false ;
39
39
static float max_growth_allowed = .10f ;
40
40
static int max_mem_allowed = 30 ;
Original file line number Diff line number Diff line change 1
- // Copyright 2022-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1
+ // Copyright 2022-2023 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
2
//
3
3
// Redistribution and use in source and binary forms, with or without
4
4
// modification, are permitted provided that the following conditions
@@ -41,7 +41,7 @@ public class ResnetTest {
41
41
// TODO: fix build to support GPU only resnet50v1.5_fp16_savedmodel
42
42
//"resnet50v1.5_fp16_savedmodel",
43
43
};
44
- private static final double TRITON_MIN_COMPUTE_CAPABILITY = 7.5 ;
44
+ private static final double TRITON_MIN_COMPUTE_CAPABILITY = 6.0 ;
45
45
private enum Backend {
46
46
NONE ,
47
47
ONNX ,
You can’t perform that action at this time.
0 commit comments