Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for diag (0.1 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		d := p.From.Offset
    		if d == 0 {
    			c.ctxt.Diag("zero shifts cannot be handled correctly: %v", p)
    		}
    		s := movcon(d)
    		if s < 0 || s >= 4 {
    			c.ctxt.Diag("bad constant for MOVK: %#x\n%v", uint64(d), p)
    		}
    		if (o1&S64) == 0 && s >= 2 {
    			c.ctxt.Diag("illegal bit position\n%v", p)
    		}
    		if ((uint64(d) >> uint(s*16)) >> 16) != 0 {
    			c.ctxt.Diag("requires uimm16\n%v", p)
    		}
    		rt := int(p.To.Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    			case REG_CR7:
    				r = BI_CR7
    			default:
    				c.ctxt.Diag("unrecognized register: expecting CR\n")
    			}
    		}
    		v := int32(0)
    		if p.To.Target() != nil {
    			v = int32(p.To.Target().Pc - p.Pc)
    		}
    		if v&03 != 0 {
    			c.ctxt.Diag("odd branch target address\n%v", p)
    			v &^= 03
    		}
    
    		if v < -(1<<16) || v >= 1<<15 {
    			c.ctxt.Diag("branch too far\n%v", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    		var opcode uint32
    		switch p.As {
    		default:
    			c.ctxt.Diag("unexpected opcode %v", p.As)
    		case AKM, AKMC, AKLMD:
    			if p.From.Reg == REG_R0 {
    				c.ctxt.Diag("input must not be R0 in %v", p)
    			}
    			if p.From.Reg&1 != 0 {
    				c.ctxt.Diag("input must be even register in %v", p)
    			}
    			if p.To.Reg == REG_R0 {
    				c.ctxt.Diag("second argument must not be R0 in %v", p)
    			}
    			if p.To.Reg&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    		if rm == nil || rm.Type != obj.TYPE_MEM {
    			ctxt.Diag("illegal broadcast without memory argument: %v", p)
    		} else if !evex.BroadcastEnabled() {
    			ctxt.Diag("unsupported broadcast: %v", p)
    		}
    		evexB = 1
    	case suffix.sae:
    		if rm != nil && rm.Type == obj.TYPE_MEM {
    			ctxt.Diag("illegal SAE with memory argument: %v", p)
    		} else if !evex.SaeEnabled() {
    			ctxt.Diag("unsupported SAE: %v", p)
    		}
    		evexB = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        mlir::InFlightDiagnostic diag =
            mlir::emitWarning(op->getLoc(), "has static shape result");
        if (op->getContext()->shouldPrintOpOnDiagnostic()) {
          diag.attachNote(op->getLoc())
              .append("see current operation: ")
              .appendOp(*op, OpPrintingFlags().printGenericOpForm());
        }
        diag << variadic_idx_str << " for unranked operand" << variadic_idx_str;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    func.func @testMatrixDiag(%diag: tensor<2x4xf32>) -> tensor<2x4x4xf32> {
      // CHECK-DAG: %[[MINUS1:.*]] = "tf.Const"() <{value = dense<-1> : tensor<i32>}> : () -> tensor<i32>
      // CHECK-DAG: %[[ZEROI:.*]] = "tf.Const"() <{value = dense<0> : tensor<i32>}> : () -> tensor<i32>
      // CHECK-DAG: %[[ZEROF:.*]] = "tf.Const"() <{value = dense<0.000000e+00> : tensor<f32>}> : () -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        }
        // Only support 1D for now.
        if (type.getRank() > 1 || dynamic_iota_op.getIotaDimension() != 0) {
          return rewriter.notifyMatchFailure(
              dynamic_iota_op, [&](::mlir::Diagnostic& diag) {
                diag << "Only 1D DynamicIotaOp with iota dimension 0 is supported";
              });
        }
    
        const uint64_t dimension = dynamic_iota_op.getIotaDimension();
        Type element_type = type.getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/dag.txt

    Guillaume Nodet <******@****.***> 1705337366 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // CHECK-DAG:       [[VAL_92:%.*]] = arith.constant dense<0.000000e+00> : tensor<3xf32>
    // CHECK-DAG:       [[VAL_93:%.*]] = arith.constant dense<0.000000e+00> : tensor<1x3xf32>
    // CHECK-DAG:       [[VAL_94:%.*]] = arith.constant dense<0.000000e+00> : tensor<1x1xf32>
    // CHECK-DAG:       [[VAL_95:%.*]] = arith.constant dense<0> : tensor<1xi64>
    // CHECK-DAG:       [[VAL_96:%.*]] = arith.constant dense<1> : tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        // CHECK:        %[[PARALLEL_EXECUTE_OUTPUT:[0-9]*]] = "tf_device.parallel_execute"
        // CHECK-NEXT:     "tf_device.launch"
        // CHECK-DAG:        %[[PROGRAM_OUTPUT:[a-z_0-9]*]] = "tf._XlaCompileMlirPlaceholderProgramKey"
        // CHECK-DAG:        %[[DEVICE_ORDINAL:[a-z_0-9]+]] = "tf._TPUDeviceOrdinalPlaceholder"
        // CHECK:            %[[RECV_OUTPUT:[0-9]*]] = "tf._XlaRecvAtHostV2"(%[[PROGRAM_OUTPUT]], %[[DEVICE_ORDINAL]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
Back to top