Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for _Equal (0.26 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        reduced_e1--;
      }
    
      return (std::distance(i1, reduced_e1) > 0) &&
             (std::distance(i1, reduced_e1) <= full_type.getRank()) &&
             (std::equal(i1, reduced_e1, i2));
    }
    
    // Check if the value of the last dimension of type1 is equal to the number of
    // elements in type2. This is a required condition to flatten type2 to form a
    // 1D array and allow the binaryOp handle the broadcasting implicitly.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    		assert.Equal(t, containerID, fakeCommandRunner.ContainerID, "(testError=%v) ID", testError)
    		assert.Equal(t, cmd, fakeCommandRunner.Cmd, "(testError=%v) command", testError)
    		// this isn't 100% foolproof as a bug in a real CommandRunner where it fails to copy to stdout/stderr wouldn't be caught by this test
    		assert.Equal(t, "foo", string(actualOutput), "(testError=%v) output", testError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          !arg_ty.isDynamicDim(0))
        return {};
    
      // Argument tensor rank is equal to the number of packed dimensions.
      if (arg_ty.getRank() != getValues().size()) return {};
    
      // All other dimensions are statically known and equal to packed dims.
      auto arg_dims = llvm::drop_begin(arg_ty.getShape(), 1);
      if (!std::equal(arg_dims.begin(), arg_dims.end(), packed_dims.begin()))
        return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	}
    }
    
    // Equal reports true if v is equal to u.
    // For two invalid values, Equal will report true.
    // For an interface value, Equal will compare the value within the interface.
    // Otherwise, If the values have different types, Equal will report false.
    // Otherwise, for arrays and structs Equal will compare each element in order,
    // and report false if it finds non-equal elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    // Verify operand types and the result type:
    //
    // 1. Operand type ranks must be equal to the output type rank.
    //
    // 2. Operand dimension sizes (except dimension `axis`) must be equal to
    //    previously seen dimension sizes of the same dimension.
    //
    // 3. Sum of operand dimension sizes of the `axis` dimension must be equal to
    //    the dimension size of the `axis` dimension of output.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %0 = "tf.Equal"(%x, %y) {incompatible_shape_error = true} : (tensor<5xf32>, tensor<4xf32>) -> tensor<5xi1>
      func.return %0 : tensor<5xi1>
    }
    
    // -----
    
    // CHECK-LABEL: testEqualOpIncompatibleShapeFalse
    func.func @testEqualOpIncompatibleShapeFalse(%x: tensor<5xf32>, %y: tensor<4xf32>) -> tensor<*xi1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    - Static method in class org.hamcrest.core.IsEqual Creates a matcher that matches when the examined object is logically equal to the specified operand, as determined by calling the Object.equals(java.lang.Object) method on the examined object. equalTo(T) - Static method in class org.hamcrest.CoreMatchers Creates a matcher that matches when the examined object is logically equal to the specified operand, as determined by calling the Object.equals(java.lang.Object) method on the examined object. e...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        if (static_dims(input_batch, output_batch) &&
            (output_batch * block_size * block_size) != input_batch)
          return op.emitOpError()
                 << "requires output batch (dimension 0) to be equal to input "
                    "batch (dimension 0) / (block_size * block_size), but got "
                    "output batch "
                 << output_batch << ", input batch " << input_batch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    			}
    			if !bytes.Equal(stack, lt.stack) {
    				t.Errorf("funcLayout(%v, %v).stack=%v, want %v", lt.typ, lt.rcvr, stack, lt.stack)
    			}
    			if !bytes.Equal(gc, lt.gc) {
    				t.Errorf("funcLayout(%v, %v).gc=%v, want %v", lt.typ, lt.rcvr, gc, lt.gc)
    			}
    			if !bytes.Equal(inRegs, lt.inRegs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

         *   <li>Its execution does not cause any observable side effects.
         *   <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal
         *       Objects.equal}{@code (k1, k2) &&} {@link Objects#equal}{@code (v1, v2)} implies that
         *       {@code Objects.equal(transformer.transform(k1, v1), transformer.transform(k2, v2))}.
         * </ul>
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top