Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 631 for Succeeded (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

        LogicalResult result =
            Tf2XlaRewriter::RewriteOp(&op, pattern_rewriter,
                                      /*device_type=*/"XLA_CPU_JIT");
        if (!result.succeeded()) {
          return tsl::errors::Internal("Failed to rewrite op");
        }
    
        return absl::OkStatus();
      }
    
      Status LegalizeModule(std::string module_string = kMlirModuleStr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

        rhs_reshape_segids.at(std::get<0>(i)) = num_rhs_reshape_segids;
      }
      ++num_rhs_reshape_segids;
    
      // If LHS requires reshapes.
      if (lhs_rank != num_lhs_reshape_segids) {
        if (succeeded(VerifyShapeOfReshapeOp(lhs_shape))) {
          *lhs = createReshapeOp(*lhs, lhs_shape, lhs_type.getElementType(), loc,
                                 rewriter);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/go/types/assignments.go

    	r = len(rhs)
    	if l == r {
    		for i, lhs := range lhs {
    			check.initVar(lhs, rhs[i], context)
    		}
    		// Only record comma-ok expression if both initializations succeeded
    		// (go.dev/issue/59371).
    		if commaOk && rhs[0].mode != invalid && rhs[1].mode != invalid {
    			check.recordCommaOkTypes(orig_rhs[0], rhs)
    		}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      ASSERT_TRUE(module_op);
    
      FailureOr<TF::XlaCallModuleOp> xla_call_module_op =
          FindFirstOpFromMainFunc<TF::XlaCallModuleOp>(*module_op);
      ASSERT_TRUE(succeeded(xla_call_module_op));
    
      // Test that `GetQuantizationMethodOrDefault` returns a valid `Method`
      // corresponding to `"no_quantization {}"`.
      const Method method = GetQuantizationMethodOrDefault(*xla_call_module_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

            return extractFailure()
        }
    
        private ExecutionFailure extractFailure() {
            if (!(result instanceof ExecutionFailure)) {
                throw new UnexpectedBuildFailure("build was expected to fail but succeeded")
            }
            failure = result as ExecutionFailure
            failure
        }
    
        private void runBuild(String... tasks) {
            if (!tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

    		if len(err) != 0 && tt.validated {
    			t.Fatalf("Test %s failed with errors: %+v but supposed to succeed", tt.name, err)
    		}
    		if len(err) == 0 && !tt.validated {
    			t.Fatalf("Test %s failed as it is supposed to fail but succeeded", tt.name)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			wantErr: true,
    		},
    	}
    	for _, test := range tests {
    		hi, lo, err := splitImm24uScaled(test.v, test.shift)
    		switch {
    		case err == nil && test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) succeeded, want error", test.v, test.shift)
    		case err != nil && !test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) failed: %v", test.v, test.shift, err)
    		case !test.wantErr:
    			if got, want := hi, test.wantHi; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

     * </p>
     *
     * <p>Note that when used as a work node, any failure to calculate the value is collected and not rethrown. This means that the node is considered to have succeeded and any dependent
     * nodes will execute, and the exception will be rethrown when the value is queried.
     * </p>
     *
     * <p>You should use {@link CalculatedValueContainerFactory} to create instances of this type.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/syscall/exec_freebsd.go

    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Attach to the given jail, if any. The system call also changes the
    	// process' root and working directories to the jail's path directory.
    	if sys.Jail > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

        auto signedRhs = addSign(splatRhs.getSplatValue<ValType>(), etype);
        FailureOr<decltype(signedLhs)> result(Convert()(signedLhs, signedRhs));
        return succeeded(result) ? SplatElementsAttr::get(type, *result)
                                 : Attribute();
      }
    
      SmallVector<ValType, 6> values;
      values.reserve(lhs.getNumElements());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top