* Small name fix * Add convert nightly tests, and for other llm tests, use stable ckpt * Small fix and ftp fix * Small fix * Small fix
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			396 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			396 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
export ANALYTICS_ZOO_ROOT=${ANALYTICS_ZOO_ROOT}
 | 
						|
export LLM_HOME=${ANALYTICS_ZOO_ROOT}/python/llm/src
 | 
						|
export LLM_CONVERT_TEST_DIR=${ANALYTICS_ZOO_ROOT}/python/llm/test/convert
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
echo "# Start testing convert"
 | 
						|
start=$(date "+%s")
 | 
						|
 | 
						|
python -m pytest -s ${LLM_CONVERT_TEST_DIR}
 | 
						|
 | 
						|
now=$(date "+%s")
 | 
						|
time=$((now-start))
 | 
						|
 | 
						|
echo "Bigdl-llm tests finished"
 | 
						|
echo "Time used:$time seconds"
 |