Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 124 for Succeeded (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass_test.cc

      CellReader<int64_t> dynamism_function_counter(
          kDynamismFunctionCounterStreamzName);
    
      CreateModule(kMlirModuleStr);
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(dynamism_function_counter.Delta(kNotDynamicFunctionName), 1);
    }
    
    TEST_F(InputLoweringMetricsPassTest, CountsDynamicOps) {
      static constexpr char kMlirModuleStr[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 19:42:09 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

      // incompatible_shape_error is `true` (what is also checked by the verifier).
      if (succeeded(RewriteEqOp<TF::EqualOp>(op, rewriter))) return success();
      if (succeeded(RewriteEqOp<TF::NotEqualOp>(op, rewriter))) return success();
      if (succeeded(RewriteBatchMatMulV2Op(op, rewriter))) return success();
    
      return failure();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

                return ExecutionResult.succeeded(model);
            });
        }
    
        @Override
        public <T> T withEmptyBuild(Function<? super SettingsInternal, T> action) {
            return runBuild(() -> {
                T result = buildLifecycleController.withSettings(action);
                return ExecutionResult.succeeded(result);
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

      pm.addInstrumentation(std::make_unique<SaveQuantizationReportInstrumentation>(
          report_file_path));
    
      const LogicalResult run_result = pm.run(*module_op);
      ASSERT_TRUE(succeeded(run_result));
    
      // Check that the report file contains `QuantizationResults` textproto,
      // reflecting the quantization results, in this case the
      // `composite_dot_general_fn` with quantized with `static_range_ptq` method.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/errors_test.go

    	cmd := exec.Command("go", "build", "-gcflags=-L -e", "-o="+dst, path(file)) // TODO(gri) no need for -gcflags=-L if go tool is adjusted
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Errorf("expected cgo to fail but it succeeded")
    	}
    
    	lines := bytes.Split(out, []byte("\n"))
    	for _, re := range errors {
    		found := false
    		for _, line := range lines {
    			if re.Match(line) {
    				t.Logf("found match for %#q: %q", re, line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/UnexpectedBuildSuccess.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner;
    
    /**
     * Thrown when executing a build that was expected to fail, but succeeded.
     *
     * @since 2.6
     * @see GradleRunner#buildAndFail()
     */
    public class UnexpectedBuildSuccess extends UnexpectedBuildResultException {
        public UnexpectedBuildSuccess(String message, BuildResult buildResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 988 bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleState.java

     */
    
    package org.gradle.process.internal;
    
    public enum ExecHandleState {
        INIT(false),
        STARTING(false),
        STARTED(false),
        ABORTED(true),
        FAILED(true),
        DETACHED(true),
        SUCCEEDED(true);
    
        private final boolean terminal;
    
        ExecHandleState(boolean terminal) {
            this.terminal = terminal;
        }
    
        public boolean isTerminal() {
            return terminal;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils_test.cc

      mlir::tf_device::ClusterFuncOp cluster_func_op = cluster_func_ops.front();
    
      tensorflow::tpu::TPUCompileMetadataProto compile_metadata;
    
      ASSERT_TRUE(mlir::succeeded(SetMetadataProtoFromClusterFuncOp(
          cluster_func_op,
          /*num_replicas=*/1, /*num_cores_per_replica=*/1, {}, &compile_metadata)));
    
      tensorflow::tpu::TPUCompileMetadataProto expected_compile_metadata;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 12 04:22:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/ExecutionListener.java

    /**
     * Allows an execution action to provide status information to the execution context.
     *
     * <p>Note: if the action does not call {@link #onFailure(Throwable)}, then the execution is assumed to have
     * succeeded.</p>
     */
    public interface ExecutionListener {
        /**
         * Reports a failure of the execution. Note that it is the caller's responsibility to perform any logging of the
         * failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue52127.go

    		write("b", i, `package p
    var
    var
    var
    var
    var
    `)
    	}
    
    	cmd := exec.Command(args[0], args[1:]...)
    	output, err := cmd.CombinedOutput()
    	if err == nil {
    		panic("compile succeeded unexpectedly")
    	}
    	if !bytes.Contains(output, []byte("syntax error:")) {
    		panic(fmt.Sprintf(`missing "syntax error" in compiler output; got: 
    %s`, output))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top