Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Fpack (0.2 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		st.advance(2)
    		e := st.expression()
    		pack := st.findArgumentPack(e)
    		return &PackExpansion{Base: e, Pack: pack}
    	} else if st.str[0] == 's' && len(st.str) > 1 && st.str[1] == 'Z' {
    		st.advance(2)
    		off := st.off
    		e := st.expression()
    		ap := st.findArgumentPack(e)
    		if ap == nil {
    			st.failEarlier("missing argument pack", st.off-off)
    		}
    		return &SizeofPack{Pack: ap}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

      %2 = "tfl.add"(%arg0, %arg3) {tac.device = "GPU", fused_activation_function = "RELU6", tac.inference_type = "FLOAT"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
      %3 = "tfl.pack"(%1, %2) {tac.device = "CPU", tac.inference_type = "FLOAT", axis = 0 : i32, values_count = 2 : i32} : (tensor<1xf32>, tensor<1xf32>) -> tensor<2x1xf32>
      func.return %3 : tensor<2x1xf32>
    }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    			return
    		}
    
    		s.Write([]byte("garbage DNS response packet"))
    
    		msg.Header.Response = true
    		msg.Header.ID++ // make invalid ID
    
    		if b, err = msg.Pack(); err != nil {
    			t.Error("failed to pack DNS response:", err)
    			return
    		}
    		s.Write(b)
    
    		msg.Header.ID-- // restore original ID
    		msg.Answers = []dnsmessage.Resource{
    			{
    				Header: dnsmessage.ResourceHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        auto result_ty = tensorflow::GetTypeFromTFTensorShape(
            result_shape, list_element_ty.getElementType());
    
        // If the list is empty, directly create the final result instead of
        // creating the tf.Pack op. tf.Pack op requires at least one operand.
        if (tensors.empty()) {
          tensorflow::Tensor tensor(list->element_dtype,
                                    tensorflow::TensorShape(result_shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        }
    
        rewriter.replaceOp(op, result);
        return success();
      }
    };
    
    // Lowers Pack op to ConcatV2 op after changing shape of the inputs with
    // ExpandDims op.
    //
    // Sample result with 2 inputs to pack:
    //
    //   %axis = "tf.Const"() {value = dense<1> : tensor<i64>}
    //   %inp0 = "tf.ExpandDims"(%operand0, %axis): tensor<2xf32> -> tensor<2x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    var depsuffix = []string{
    	".s",
    	".go",
    }
    
    // gentab records how to generate some trivial files.
    // Files listed here should also be listed in ../distpack/pack.go's srcArch.Remove list.
    var gentab = []struct {
    	pkg  string // Relative to $GOROOT/src
    	file string
    	gen  func(dir, file string)
    }{
    	{"go/build", "zcgo.go", mkzcgo},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top