Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 317 for failme (0.11 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        if (failed(input_i8_to_f32_convert_op)) return failure();
    
        if (!IsI8ToF32Cast(*input_i8_to_f32_convert_op)) {
          LLVM_DEBUG(llvm::dbgs() << "Failed to match input_i8_to_f32_convert_op. "
                                     "It should be a i8->f32 cast.\n");
          return failure();
        }
    
        if (failed(MatchFilter(op.getOperand(1)))) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          if (failed(FillAttributesForUniformQuantizedConvolutionOp(
                  rewriter, uniform_op, identifier_to_attr, quantization_method,
                  enable_per_channel_quantization)))
            return failure();
        } else if (auto uniform_op =
                       llvm::dyn_cast<TF::UniformQuantizedDotHybridOp>(inner_op);
                   uniform_op != nullptr) {
          if (failed(FillAttributesForUniformQuantizedDotOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                }
            """
    
            when:
            fails ":compileJava"
    
            then:
            // jar file fails because it doesn't have any checksum declared, despite ignoring the key, which is what we want
            // and pom file fails because we didn't trust the key
            assertVerificationError(terse) {
                whenTerse """Dependency verification failed for configuration ':compileClasspath'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failure.assertHasCause("Failed to create service 'counter1'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
            failure.assertHasCause("broken")
            failure.assertHasDescription("Execution failed for task ':second'.")
            failure.assertHasCause("Failed to create service 'counter2'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher_test.go

    			},
    		},
    		{
    			name: "all detached",
    			attachedSpecs: []attachedSpec{
    				{"vol0", volume.NewSpecFromPersistentVolume(makeTestPV("pv0", 10, testDriver, "vol0"), false), false},
    				{"vol1", volume.NewSpecFromPersistentVolume(makeTestPV("pv1", 20, testDriver, "vol1"), false), false},
    				{"vol2", volume.NewSpecFromPersistentVolume(makeTestPV("pv2", 10, testDriver, "vol2"), false), false},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> resource_arg_uses;
      if (failed(FindResourceArgUseInfo(branches.front(), &resource_arg_uses)))
        return failure();
    
      for (auto func : branches.drop_front()) {
        llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> branch_use_info;
        if (failed(FindResourceArgUseInfo(func, &branch_use_info)))
          return failure();
        // A resource is considered used as long as it is used in either branch.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

            !(allow_bf16_and_f16_type_legalization_ &&
              TFTypeIsBFloat16OrHalfTensor(tf_op.getInput())))
          return failure();
    
        if (!TFDataFormatIsNHWC(op)) return failure();
    
        IntegerAttr height, width;
        if (!TFIntListIs1XY1(op, "strides", &height, &width)) return failure();
    
        ConvertTFConvOpMatchState state;
        state.stride_height = height;
        state.stride_width = width;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("processing a.blue")
            failure.assertHasFailure("Execution failed for task ':resolve'.") {
                it.assertHasCause("Failed to transform root.blue to match attributes {artifactType=blue, color=green}.")
                it.assertHasCause("Failed to transform a.jar (project :a) to match attributes {artifactType=jar, color=green}.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          if (failed(result)) {
            func.emitError("Inliner failed");
            return result;
          }
          ops_to_erase.insert(caller);
        }
        for (auto op : ops_to_erase) op->erase();
    
        auto result = PatchCollectiveGatherInstanceKey(func);
        if (failed(result)) return result;
    
        result = UnifyReplicationInfo(func);
        if (failed(result)) return result;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Generates a nonfatal failure at the given source file location with
    // a generic message.
    #define ADD_FAILURE_AT(file, line) \
      GTEST_MESSAGE_AT_(file, line, "Failed", \
                        ::testing::TestPartResult::kNonFatalFailure)
    
    // Generates a fatal failure with a generic message.
    #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top