Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Unpack (0.2 sec)

  1. src/cmd/go/internal/work/exec.go

    	}
    
    	// Pack into archive in objdir directory.
    	// If the Go compiler wrote an archive, we only need to add the
    	// object files for non-Go sources to the archive.
    	// If the Go compiler wrote an archive and the package is entirely
    	// Go sources, there is no pack to execute at all.
    	if len(objects) > 0 {
    		if err := BuildToolchain.pack(b, a, objpkg, objects); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. go.sum

    github.com/prometheus/prometheus v0.52.1/go.mod h1:3z74cVsmVH0iXOR5QBjB7Pa6A0KJeEAK5A6UsmAFb1g=
    github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
    github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo=
    github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A=
    github.com/quic-go/quic-go v0.44.0 h1:So5wOr7jyO4vzL2sd8/pD9Kesciv91zSk8BoFngItQ0=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          buffer_idx_map_[index] = hashcode_to_pos[hash];
        }
        buffer_data_map_.erase(it);
        it = buffer_data_map_.begin();
        buffer_data_exported_ = true;
      }
      // pad 16 bytes for the last buffer for XNNPack
      result.Append("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
      // pad to be 16 bytes aligned
      {
        std::string pad(kFbAlignment - result.size() % kFbAlignment, '\0');
        result.Append(std::move(pad));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    using ComputedQueryFn = function_ref<bool(ValuePort)>;
    using ValueQueryFn = function_ref<Attribute(const ValuePort&)>;
    using ValuePortInputs = SmallVectorImpl<ValuePort>;
    
    // Note: Following implements the rank 1 pack op case so could be
    // generalized.
    //
    // Maps the specified component in the `port` of the given op's result to one of
    // the element in the input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top