Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Fpack (0.12 sec)

  1. src/runtime/mgcscavenge.go

    		gen:            uint32(sc >> 32),
    		scavChunkFlags: scavChunkFlags(uint8(sc>>(16+logScavChunkInUseMax)) & scavChunkFlagsMask),
    	}
    }
    
    // pack returns sc packed into a uint64.
    func (sc scavChunkData) pack() uint64 {
    	return uint64(sc.inUse) |
    		(uint64(sc.lastInUse) << 16) |
    		(uint64(sc.scavChunkFlags) << (16 + logScavChunkInUseMax)) |
    		(uint64(sc.gen) << 32)
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    func unpackInstPair(target *ld.Target, r int64) (uint32, uint32) {
    	if target.IsBigEndian() {
    		return uint32(r >> 32), uint32(r)
    	}
    	return uint32(r), uint32(r >> 32)
    }
    
    // Pack a pair of 32 bit instruction words o1, o2 into 64 bit relocation
    // in endian order.
    func packInstPair(target *ld.Target, o1, o2 uint32) int64 {
    	if target.IsBigEndian() {
    		return (int64(o1) << 32) | int64(o2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    // terminated at endBlock/Value.
    func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {
    	pending := state.pendingEntries[varID]
    	if !pending.present {
    		return
    	}
    
    	// Pack the start/end coordinates into the start/end addresses
    	// of the entry, for decoding by PutLocationList.
    	start, startOK := encodeValue(state.ctxt, pending.startBlock, pending.startValue)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: "tf.ConcatV2"(%[[INP0]], %[[INP1]], %[[AXIS]]) : (tensor<1x3x5xf32>, tensor<1x3x5xf32>, tensor<i64>) -> tensor<2x3x5xf32>
    
      %0 = "tf.Pack"(%arg0, %arg1) : (tensor<3x5xf32>, tensor<3x5xf32>) -> tensor<2x3x5xf32>
      func.return %0 : tensor<2x3x5xf32>
    }
    
    // CHECK-LABEL: func @square
    func.func @square(%arg0: tensor<3xf32>) -> tensor<3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      const bool fully_quantize = !allow_float;
    
      flatbuffers::FlatBufferBuilder input_builder;
      tflite::FinishModelBuffer(input_builder,
                                tflite::Model::Pack(input_builder, model));
    
      const std::string input_buffer(
          reinterpret_cast<const char*>(input_builder.GetBufferPointer()),
          input_builder.GetSize());
      auto status = mlir::lite::QuantizeModel(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. src/time/format.go

    		x = -x
    	}
    	return x, nil
    }
    
    // The "std" value passed to appendNano contains two packed fields: the number of
    // digits after the decimal and the separator character (period or comma).
    // These functions pack and unpack that variable.
    func stdFracSecond(code, n, c int) int {
    	// Use 0xfff to make the failure case even more absurd.
    	if c == '.' {
    		return code | ((n & 0xfff) << stdArgShift)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. src/main/webapp/css/font-awesome.min.css

    f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{co...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/font-awesome.min.css

    f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{co...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // with a TR1 tuple implementation.  NVIDIA's CUDA NVCC compiler
    // pretends to be GCC by defining __GNUC__ and friends, but cannot
    // compile GCC's tuple implementation.  MSVC 2008 (9.0) provides TR1
    // tuple in a 323 MB Feature Pack download, which we cannot assume the
    // user has.  QNX's QCC compiler is a modified GCC but it doesn't
    // support TR1 tuple.  libc++ only provides std::tuple, in C++11 mode,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    			cmd = append(cmd, asms...)
    			_, err = runcmd(cmd...)
    			if err != nil {
    				return err
    			}
    			objs = append(objs, "asm.o")
    		}
    		cmd = []string{goTool, "tool", "pack", "c", "all.a"}
    		cmd = append(cmd, objs...)
    		_, err = runcmd(cmd...)
    		if err != nil {
    			return err
    		}
    		cmd = []string{goTool, "tool", "link", "-importcfg=" + stdlibImportcfgFile(), "-o", "a.exe", "all.a"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top