Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for isIntermediate (0.44 sec)

  1. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

        elem_type = mlir::IntegerType::get(elem_type.getContext(),
                                           elem_type.getIntOrFloatBitWidth());
      }
    
      // Intermediate tensors with calibration value (but not scale and zero points)
      // should return calibrated quantized type.
      if (is_intermediate && tensor.quantization != nullptr &&
          !IsQuantized(tensor)) {
        TF_ASSIGN_OR_RETURN(elem_type, GetCalibratedQuantizedType(tensor, builder));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                                 /*is_constant=*/false, /*is_intermediate=*/true));
          intermediate_types.emplace_back(type);
        }
    
        auto op_loc = OpLoc(*op, subgraph.tensors, builder, base_loc);
    
        // If there's an optional argument, maybe_optional_arg_marker has been set
        // to a valid Value
        TF_ASSIGN_OR_RETURN(
            auto* mlir_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

    import org.gradle.tooling.provider.model.UnknownModelException
    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    import org.gradle.util.Path
    
    
    /**
     * Responsible for loading and storing intermediate models used during tooling API build action execution.
     */
    internal
    class IntermediateModelController(
        private val host: DefaultConfigurationCache.Host,
        private val cacheIO: ConfigurationCacheIO,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    _Description_: *Learn to configure builds, create tasks, and write plugins.* +
    _Training level_: **Intermediate** +
    _Reading time_: **35 minutes** +
    <<gradle_directories.adoc#gradle_directories,-> Read Core Concepts >>
    
    === 2. Hands-on Tutorial
    
    [sidebar]
    _Description_: *Initialize a Gradle project and create a basic plugin.* +
    _Training level_: **Intermediate** +
    _Training time_: **55 minutes** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/crypto/x509/name_constraints_test.go

    				levelKey := privateKeys.Get().(*ecdsa.PrivateKey)
    				keys = append(keys, levelKey)
    				levelName := "Intermediate level " + strconv.Itoa(level)
    				var last *Certificate
    
    				for _, intermediate := range intermediates {
    					caCert, err := makeConstraintsCACert(intermediate, levelName, levelKey, parent, parentKey)
    					if err != nil {
    						t.Fatalf("failed to create %q: %s", levelName, err)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    == 1. Authoring Gradle Builds Basics
    
    The basics section goes through some Gradle authoring basics so that you can quickly understand how to configure builds, create tasks, and write plugins.
    
    [sidebar]
    _Training level_: **Intermediate** +
    _Reading time_: **35 minutes**
    
    The introduction covers:
    
    <<gradle_directories.adoc#gradle_directories,Part 1.>> Gradle Directories +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    						},
    					},
    				},
    			},
    			expectedErr: "x509: a root or intermediate certificate is not authorized to sign for this name: DNS name \"beep.com\" is not permitted by any constraint",
    		},
    		{
    			// A name constraint on the intermediate does not apply to the intermediate
    			// itself, so this is a valid chain.
    			name: "constrained intermediate, non-matching SAN",
    			graph: trustGraphDescription{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

                           op_property->intermediates.end(),
                           [&](std::pair<int, operator_property::TensorProperty>
                                   intermediate) {
                             return intermediate.first == cifg_non_intermediate;
                           }),
            op_property->intermediates.end());
      }
      return success();
    }
    
    template <typename SourceOp>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

    import org.gradle.internal.cc.impl.fixtures.SomeToolingModel
    
    class IsolatedProjectsToolingApiParallelModelQueryIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
        def "intermediate model is cached and reused for nested concurrent requests"() {
            // Sleep to ensure concurrent requests for the same model catch up before the first one is finished
            withSomeToolingModelBuilderPluginInBuildSrc("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/crypto/x509/verify.go

    	case Expired:
    		return "x509: certificate has expired or is not yet valid: " + e.Detail
    	case CANotAuthorizedForThisName:
    		return "x509: a root or intermediate certificate is not authorized to sign for this name: " + e.Detail
    	case CANotAuthorizedForExtKeyUsage:
    		return "x509: a root or intermediate certificate is not authorized for an extended key usage: " + e.Detail
    	case TooManyIntermediates:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top