Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for interop (0.13 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK-SAME:          %[[PAD_VAL:.*]]: tensor<f32>) -> tensor<1x64x114x114xf32> {
    // CHECK:           %[[PAD:.*]] = stablehlo.pad %[[INPUT]], %[[PAD_VAL]],
    // CHECK:               low = [0, 1, 1, 0], high = [0, 1, 1, 0], interior = [0, 0, 0, 0]
    // CHECK:               : (tensor<1x112x112x64xf32>, tensor<f32>) -> tensor<1x114x114x64xf32>
    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[PAD]], dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ant/properties/kotlin/build.xml

    <project>
    <!-- tag::setproperty[] -->
    <echo>buildDir = ${buildDir}</echo>
    <!-- end::setproperty[] -->
    
    <!-- tag::getproperty[] -->
    <property name="antProp" value="a property defined in an Ant build"/>
    <!-- end::getproperty[] -->
    
    <!-- tag::setreference[] -->
    <path refid="classpath"/>
    <!-- end::setreference[] -->
    
    <!-- tag::getreference[] -->
    <path id="antPath" location="libs"/>
    <!-- end::getreference[] -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 421 bytes
    - Viewed (0)
  3. test/blank.go

    	for _, s := range ints {
    		out += s
    	}
    	if out != "123" {
    		panic(out)
    	}
    
    	sum := 0
    	for s := range ints {
    		sum += s
    	}
    	if sum != 3 {
    		panic(sum)
    	}
    
    	// go.tools/ssa/interp cannot support unsafe.Pointer.
    	if os.Getenv("GOSSAINTERP") == "" {
    		type T1 struct{ x, y, z int }
    		t1 := *(*T)(unsafe.Pointer(&T1{1, 2, 3}))
    		t2 := *(*T)(unsafe.Pointer(&T1{4, 5, 6}))
    		if t1 != t2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 08 18:36:20 UTC 2013
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      block->walk([&](Operation* op) {
        Operation* iter_op = op;
        while (iter_op && !llvm::isa<mlir::tf_device::ClusterOp>(iter_op)) {
          if (iter_op->hasAttrOfType<StringAttr>(kXlaOutsideCompilationAttr)) {
            return;
          }
          iter_op = iter_op->getParentOp();
        }
    
        if (!IsSupportedOp(*op, supported_ops, tf_dialect)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

        // We have to recurse, since we might have wrapped a side-effectful operator
        // in a tfl::CustomTfOp.
        if (op.walk([&](Operation *inner_op) {
                return op_has_side_effects_(inner_op) ? WalkResult::interrupt()
                                                      : WalkResult::advance();
              }).wasInterrupted()) {
          ops_with_side_effects.push_back(&op);
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. LICENSES/vendor/github.com/josharian/intern/LICENSE

    = vendor/github.com/josharian/intern licensed under: =
    
    MIT License
    
    Copyright (c) 2019 Josh Bleecher Snyder
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 12:26:45 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                HashCode hash = streamHasher.hashCopy(input, output);
                chmodUnpackedFile(entry, file);
                String internedAbsolutePath = stringInterner.intern(file.getAbsolutePath());
                String internedFileName = stringInterner.intern(fileName);
                return new RegularFileSnapshot(internedAbsolutePath, internedFileName, hash, DefaultFileMetadata.file(output.getCount(), file.lastModified(), DIRECT));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    }
    
    func doubleCheckHeapPointersInterior(x, interior, size, dataSize uintptr, typ *_type, header **_type, span *mspan) {
    	bad := false
    	if interior < x {
    		print("runtime: interior=", hex(interior), " x=", hex(x), "\n")
    		throw("found bad interior pointer")
    	}
    	off := interior - x
    	tp := span.typePointersOf(interior, size)
    	for i := off; i < off+size; i += goarch.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      for (Operation* cluster_op : cluster_ops) {
        cluster_op->moveBefore(body, body->end());
        cluster_op->walk([&](Operation* inner_op) {
          inner_op->removeAttr(mlir::TF::kReplicationInfoAttr);
          inner_op->removeAttr(mlir::TF::kCompileDeviceTypeAttr);
    
          if (auto attr = inner_op->getAttrOfType<StringAttr>(kDeviceAttr)) {
            // Preserve device attribute if the op is placed on a replicated core
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  10. docs/de/docs/benchmarks.md

    Beim Ansehen von Benchmarks und Vergleichen sollten Sie jedoch Folgende Punkte beachten.
    
    ## Benchmarks und Geschwindigkeit
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 16:04:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top