Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for lhs0 (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      llvm::sort(inputs, [](const auto& lhs, const auto& rhs) {
        return tensorflow::Fingerprint64(lhs.first) <
               tensorflow::Fingerprint64(rhs.first);
      });
      std::vector<std::pair<std::string, TensorInfo>> outputs(
          signature_def.outputs().begin(), signature_def.outputs().end());
      llvm::sort(outputs, [](const auto& lhs, const auto& rhs) {
        return tensorflow::Fingerprint64(lhs.first) <
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      XlaBroadcastHelperOpAdaptor op(operands.getValues(), attributes);
      Value lhs = op.getLhs();
      Value rhs = op.getRhs();
      auto set_unranked_results = [&]() {
        inferredReturnShapes.emplace_back(getElementTypeOrSelf(lhs));
        inferredReturnShapes.emplace_back(getElementTypeOrSelf(rhs));
        return success();
      };
    
      RankedTensorType lhs_ty = lhs.getType().dyn_cast<RankedTensorType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    			if ctxt.Arch.Family == sys.I386 {
    				breg := byteswapreg(ctxt, &p.To)
    				if breg != REG_AX {
    					ab.Put1(0x87) // xchg lhs,bx
    					ab.asmando(ctxt, cursym, p, &p.From, reg[breg])
    					subreg(&pp, z, breg)
    					ab.doasm(ctxt, cursym, &pp)
    					ab.Put1(0x87) // xchg lhs,bx
    					ab.asmando(ctxt, cursym, p, &p.From, reg[breg])
    				} else {
    					ab.Put1(byte(0x90 + reg[z])) // xchg lsh,ax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      func.return %res1, %res2, %res3 : tensor<2xcomplex<f32>>, tensor<2xcomplex<f32>>, tensor<2xcomplex<f32>>
    }
    
    // CHECK-LABEL: testXlaConvToV2
    func.func @testXlaConvToV2(%lhs: tensor<8x4x16x16x16xf32>, %rhs: tensor<4x3x3x16x16xf32>) -> (tensor<8x4x14x14x16xf32>) {
      %feature_group_count = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      %1 = "stablehlo.dot_general"(%arg0, %0) {
        dot_dimension_numbers = #stablehlo.dot<
          lhs_batching_dimensions = [0, 1],
          rhs_batching_dimensions = [0, 1],
          // implicit transpose of lhs
          lhs_contracting_dimensions = [2],
          rhs_contracting_dimensions = [2]
        >,
        precision_config = [#stablehlo<precision DEFAULT>, #stablehlo<precision DEFAULT>]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					"v": stringType,
    				}))),
    			}),
    			valid: []string{
    				"self.objs[0] == self.objs[1]",                // equal even though order is different
    				"self.objs[0] + self.objs[2] == self.objs[2]", // rhs overwrites lhs values
    				"self.objs[2] + self.objs[0] == self.objs[0]",
    
    				"self.objs[0] == [self.objs[0][0], self.objs[0][1]]", // equal against a declared list
    				"self.objs[0] == [self.objs[0][1], self.objs[0][0]]",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top