CUTLASS 3.6.0 (#1850)
* v3.6 * update changelog * update readme * fix typo * fixing typos * hopper gemm with weight prefetch --------- Co-authored-by: yuzhai <yuzhai@nvidia.com> Co-authored-by: Haicheng Wu <haichengw@nvidia.com>
This commit is contained in:
co-authored by
yuzhai
Haicheng Wu
parent
0837a2a00a
commit
cc3c29a81a
@@ -103,6 +103,7 @@ void run_test_integer_range_all() {
|
||||
|
||||
for (int i = 0; i < kN; ++i) {
|
||||
source.host_view().at({0, i}) = Source(kIntSourceMin + (i % kIntRange));
|
||||
|
||||
}
|
||||
|
||||
source.sync_device();
|
||||
@@ -116,12 +117,14 @@ void run_test_integer_range_all() {
|
||||
|
||||
// Verify conversion
|
||||
bool passed = true;
|
||||
|
||||
for (int i = 0; i < kN; ++i) {
|
||||
if(!(float(destination.host_view().at({0, i})) == float(source.host_view().at({0, i})))) {
|
||||
passed = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
EXPECT_TRUE(passed) << " FastNumericArrayConverter failed";
|
||||
|
||||
// Print out results for the failed conversion.
|
||||
|
||||
Reference in New Issue
Block a user