CUTLASS 3.3.0 (#1167)
* Release 3.3.0 Adds support for mixed precision GEMMs On Hopper and Ampere Adds support for < 16B aligned GEMMs on Hopper Enhancements to EVT Enhancements to Python interface Enhancements to Sub-byte type handling in CuTe Several other bug-fixes and performance improvements. * minor doc update
This commit is contained in:
@@ -85,7 +85,7 @@ class GemmEquivalence:
|
||||
Tests the equivalence of various constructions of the Gemm interface when using CUTLASS data types
|
||||
and layouts for constructing the Gemm interface
|
||||
"""
|
||||
if not datatypes.numpy_available:
|
||||
if not datatypes.is_numpy_available():
|
||||
return
|
||||
|
||||
# Test when specifying all parameters
|
||||
@@ -126,7 +126,7 @@ class GemmEquivalence:
|
||||
"""
|
||||
Tests the equivalence of various constructions of the Gemm interface when using numpy as a frontend
|
||||
"""
|
||||
if not datatypes.numpy_available:
|
||||
if not datatypes.is_numpy_available():
|
||||
return
|
||||
|
||||
import numpy as np
|
||||
|
||||
Reference in New Issue
Block a user