Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,234 for Builders (0.6 sec)

  1. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    	# should avoid listing it here.
    	#
    	# Unfortunately, some of our builders are still running Debian 9 “Stretch”,
    	# which shipped with a version of 'hg' that does not support 'hg branch -r'
    	# to list branches for specific versions. Although Stretch is past its
    	# end-of-life date, we need to keep the builders happy until they can be
    	# turned down (https://go.dev/issue/56414).
    hg branches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h

    absl::StatusOr<mlir::quant::QuantizedType> GetQuantizedType(
        const tflite::TensorT& tensor, mlir::Builder builder,
        bool is_constant = false, mlir::Type storage_type = {});
    
    // Imports float tensor with calibration value into calibrated quantized type.
    absl::StatusOr<mlir::quant::QuantizedType> GetCalibratedQuantizedType(
        const tflite::TensorT& tensor, mlir::Builder builder);
    
    absl::StatusOr<mlir::TensorType> GetTensorType(const tflite::TensorT& tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/AbstractAnalysisApiSpecificAnnotationOnDeclarationTest.kt

    abstract class AbstractAnalysisApiSpecificAnnotationOnDeclarationTest : AbstractAnalysisApiBasedTest() {
        override fun configureTest(builder: TestConfigurationBuilder) {
            super.configureTest(builder)
            builder.useDirectives(Directives)
        }
    
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.h

    // opposed to being extracted into a separate tfl.pad).
    StringAttr GetAvgPoolOpPadAttr(Builder& builder, mhlo::CompositeOp op);
    
    // Get dense attr for a matrix that corrects the over counting of divisors when
    // casting an average pool with ceil mode on in terms of average pool with it
    // off.
    DenseFPElementsAttr GetCorrectionMatrix(Builder& builder, mhlo::CompositeOp op);
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/tfrt/ir/gpu_ops.h"
    
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/OpDefinition.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.h"
    
    namespace tfrt {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 00:21:42 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.h

    absl::StatusOr<mlir::ElementsAttr> ConvertTensorProto(
        const TensorProto& input_tensor, mlir::Builder* builder);
    
    // Converts an TensorFlow tensor into an MLIR elements attribute.
    absl::StatusOr<mlir::ElementsAttr> ConvertTensor(const Tensor& input_tensor,
                                                     mlir::Builder* builder);
    
    // Converts a shape from MLIR to a TensorFlow tensor shape proto.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/distributions-core/build.gradle.kts

        }
        pluginsRuntimeOnly(project(":composite-builds")) {
            because("We always need a BuildStateRegistry service implementation for certain code in ':core' to work.")
        }
        pluginsRuntimeOnly(project(":tooling-api-builders")) {
            because("We always need a BuildEventListenerFactory service implementation for ':launcher' to create global services.")
        }
        pluginsRuntimeOnly(project(":version-control")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. pkg/test/echo/docker/echo-start.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    ################################################################################
    
    set -ex
    
    # To support image builders which cannot do RUN, do the run commands at startup.
    # This exploits the fact the images remove the installer once its installed.
    # This is a horrible idea for production images, but these are just for tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:04:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/compress/gzip/issue14937_test.go

    	// To avoid spurious false positives due to untracked GZIP files that
    	// may be in the user's GOROOT (Issue 18604), we only run this test on
    	// the builders, which should have a clean checkout of the tree.
    	if testenv.Builder() == "" {
    		t.Skip("skipping test on non-builder")
    	}
    	if !testenv.HasSrc() {
    		t.Skip("skipping; no GOROOT available")
    	}
    
    	goroot, err := filepath.EvalSymlinks(runtime.GOROOT())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolveExtensionInfoProvider/AbstractResolveExtensionInfoProviderTest.kt

    import org.jetbrains.kotlin.test.builders.TestConfigurationBuilder
    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    
    abstract class AbstractResolveExtensionInfoProviderTest : AbstractAnalysisApiBasedTest() {
        override fun configureTest(builder: TestConfigurationBuilder) {
            super.configureTest(builder)
            KtResolveExtensionTestSupport.configure(builder)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top