Add transpose (#82)

This commit is contained in:
Fangjun Kuang
2023-03-05 11:27:17 +08:00
committed by GitHub
parent c230cf0a97
commit 422221b3b4
11 changed files with 110 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ function(download_asio)
foreach(f IN LISTS possible_file_locations)
if(EXISTS ${f})
set(asio_URL "file://${f}")
set(asio_URL2)
break()
endif()
endforeach()

View File

@@ -18,6 +18,7 @@ function(download_googltest)
foreach(f IN LISTS possible_file_locations)
if(EXISTS ${f})
set(googletest_URL "file://${f}")
set(googletest_URL2)
break()
endif()
endforeach()

View File

@@ -22,6 +22,7 @@ function(download_kaldi_native_fbank)
foreach(f IN LISTS possible_file_locations)
if(EXISTS ${f})
set(kaldi_native_fbank_URL "file://${f}")
set(kaldi_native_fbank_URL2 )
break()
endif()
endforeach()

View File

@@ -78,6 +78,7 @@ function(download_onnxruntime)
foreach(f IN LISTS possible_file_locations)
if(EXISTS ${f})
set(onnxruntime_URL "file://${f}")
set(onnxruntime_URL2)
break()
endif()
endforeach()

View File

@@ -19,6 +19,7 @@ function(download_portaudio)
foreach(f IN LISTS possible_file_locations)
if(EXISTS ${f})
set(portaudio_URL "file://${f}")
set(portaudio_URL2)
break()
endif()
endforeach()

View File

@@ -18,6 +18,7 @@ function(download_pybind11)
foreach(f IN LISTS possible_file_locations)
if(EXISTS ${f})
set(pybind11_URL "file://${f}")
set(pybind11_URL2)
break()
endif()
endforeach()

View File

@@ -19,6 +19,7 @@ function(download_websocketpp)
foreach(f IN LISTS possible_file_locations)
if(EXISTS ${f})
set(websocketpp_URL "file://${f}")
set(websocketpp_URL2)
break()
endif()
endforeach()