Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for Fpack (0.12 sec)

  1. src/runtime/mpallocbits.go

    	end, newSearchIdx := uint(0), ^uint(0)
    	for i := searchIdx / 64; i < uint(len(b)); i++ {
    		bi := b[i]
    		if ^bi == 0 {
    			end = 0
    			continue
    		}
    		// First see if we can pack our allocation in the trailing
    		// zeros plus the end of the last 64 bits.
    		if newSearchIdx == ^uint(0) {
    			// The new searchIdx is going to be at these 64 bits after any
    			// 1s we file, so count trailing 1s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

    template <typename Conv2dOpTy>
    class ConvertTFDilatedConvOp : public OpRewritePattern<Conv2dOpTy> {
     private:
      using OpRewritePattern<Conv2dOpTy>::OpRewritePattern;
    
      // Extract the dilation factor from `block_shape` and pack it in an ArrayAttr.
      std::optional<ArrayAttr> ExtractDilationsAttrFromBlockShape(
          Value stb_block_shape, Value bts_block_shape, int64_t expand_axis,
          PatternRewriter& rewriter) const;
    
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_distributed_test.cc

      // Add a sync point to make sure that variables have been initialized
      // before the function execution starts.
      TFE_ContextAsyncWait(ctx, status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      // Pack 3 variable handles into one TFE_TensorHandle.
      // When remote is false, function device is placed on task0. Handle types are
      // REMOTE, REMOTE, LOCAL on task0. When remote is true, function device is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gccgo.go

    	end := filepath.FromSlash(imp + ".a")
    	afile := filepath.Join(basedir, end)
    	// add "lib" to the final element
    	return filepath.Join(filepath.Dir(afile), "lib"+filepath.Base(afile))
    }
    
    func (tools gccgoToolchain) pack(b *Builder, a *Action, afile string, ofiles []string) error {
    	p := a.Package
    	sh := b.Shell(a)
    	objdir := a.Objdir
    	var absOfiles []string
    	for _, f := range ofiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. build/lib/release.sh

        fi
    
        kube::util::wait-for-jobs || { kube::log::error "previous Docker build failed"; return 1; }
        kube::log::status "Docker builds done"
      )
    
    }
    
    # This will pack kube-system manifests files for distros such as COS.
    function kube::release::package_kube_manifests_tarball() {
      kube::log::status "Building tarball: manifests"
    
      local src_dir="${KUBE_ROOT}/cluster/gce/manifests"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSet.java

      }
    
      // We use power-of-2 tables, and this is the highest int that's a power of 2
      static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.7;
    
      // If the set has this many elements, it will "max out" the table size
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

      if (first_bad_status != nullptr) {
        TF_SetStatus(status, TF_GetCode(first_bad_status.get()),
                     TF_Message(first_bad_status.get()));
        return result;
      }
      // For each output of the original operation, pack the per-device
      // TensorHandles we've computed into a single parallel TensorHandle.
      std::vector<std::unique_ptr<ParallelTensor>> per_device_outputs;
      per_device_outputs.reserve(first_op_output_count);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. src/encoding/base32/base32.go

    				}
    				break
    			}
    			dbuf[j] = enc.decodeMap[in]
    			if dbuf[j] == 0xFF {
    				return n, false, CorruptInputError(olen - len(src) - 1)
    			}
    			j++
    		}
    
    		// Pack 8x 5-bit source blocks into 5 byte destination
    		// quantum
    		switch dlen {
    		case 8:
    			dst[dsti+4] = dbuf[6]<<5 | dbuf[7]
    			n++
    			fallthrough
    		case 7:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      EQUAL = 71,
      NOT_EQUAL = 72,
      LOG = 73,
      SUM = 74,
      SQRT = 75,
      RSQRT = 76,
      SHAPE = 77,
      POW = 78,
      ARG_MIN = 79,
      FAKE_QUANT = 80,
      REDUCE_PROD = 81,
      REDUCE_MAX = 82,
      PACK = 83,
      LOGICAL_OR = 84,
      ONE_HOT = 85,
      LOGICAL_AND = 86,
      LOGICAL_NOT = 87,
      UNPACK = 88,
      REDUCE_MIN = 89,
      FLOOR_DIV = 90,
      REDUCE_ANY = 91,
      SQUARE = 92,
      ZEROS_LIKE = 93,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Calling these methods with the `DirectoryBuildCache` type will produce a deprecation warning.
    
    Use `getLocal()` and `local(Action)` instead.
    
    ==== Failing to pack or unpack cached results will now fail the build
    
    In the past, when Gradle encountered a problem while packing the results of a cached task, Gradle would ignore the problem and continue running the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top