Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 470 for spacer (0.13 sec)

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

    // RUN: odml-to-stablehlo-opt %s -fuse-mhlo-convolution-pass -cse | FileCheck %s
    
    // CHECK-LABEL: @fuseMulAndConv2D
    // CHECK-SAME: %[[INPUT:[^:[:space:]]+]]
    func.func @fuseMulAndConv2D(%input: tensor<1x256x256x3xf32>) -> (tensor<1x256x256x2xf32>) {
      // CHECK-DAG: %[[FILTER:.+]] = mhlo.constant dense<{{\[\[\[\[}}1.000000e+00, 2.000000e+00], [3.000000e+00, 4.000000e+00], [5.000000e+00, 6.000000e+00]]]]> : tensor<1x1x3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     * It can be assumed that this processing happens relatively quickly,
     * after which the objects are no longer retained.
     *
     * Consideration should be given to the package space of the details and result types.
     * They should be housed in a logical package space, which may not be the same as the class
     * that executes the actual operation being represented, as often that is internal detail that may change.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyPacker implements Packer {
        private final Packer delegate;
    
        public SnappyPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/outbuf_nommap.go

    //go:build !unix && !windows
    
    package ld
    
    // Mmap allocates an in-heap output buffer with the given size. It copies
    // any old data (if any) to the new buffer.
    func (out *OutBuf) Mmap(filesize uint64) error {
    	// We need space to put all the symbols before we apply relocations.
    	oldheap := out.heap
    	if filesize < uint64(len(oldheap)) {
    		panic("mmap size too small")
    	}
    	out.heap = make([]byte, filesize)
    	copy(out.heap, oldheap)
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 660 bytes
    - Viewed (0)
  5. test/codegen/zerosize.go

    // See issue 24993.
    
    package codegen
    
    func zeroSize() {
    	c := make(chan struct{})
    	// amd64:`MOVQ\t\$0, command-line-arguments\.s\+56\(SP\)`
    	var s *int
    	// force s to be a stack object, also use some (fixed) stack space
    	g(&s, 1, 2, 3, 4, 5)
    
    	// amd64:`LEAQ\tcommand-line-arguments\..*\+55\(SP\)`
    	c <- struct{}{}
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 18:19:47 UTC 2022
    - 650 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    	} else {
    		p.printf("\n")
    	}
    	for i := 0; i < p.margin; i++ {
    		p.printf("\t")
    	}
    }
    
    // trim removes trailing spaces and tabs from the current line.
    func (p *printer) trim() {
    	// Remove trailing spaces and tabs from line we're about to end.
    	b := p.Bytes()
    	n := len(b)
    	for n > 0 && (b[n-1] == '\t' || b[n-1] == ' ') {
    		n--
    	}
    	p.Truncate(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestDirectoryProvider.java

    import java.io.File;
    
    public class PerformanceTestDirectoryProvider extends AbstractTestDirectoryProvider {
        public PerformanceTestDirectoryProvider(Class<?> klass) {
            // Java does not support spaces in GC logging location
            super(new TestFile(new File("build/tmp/performance-test-files")), klass);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyDainPacker.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyDainPacker implements Packer {
        private final Packer delegate;
    
        public SnappyDainPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

     */
    package org.gradle.language.nativeplatform.internal.incremental.sourceparser;
    
    import java.io.IOException;
    import java.io.Reader;
    
    /**
     * Replaces c-style comments with a single space, and removes line-continuation characters.
     * This code is largely adopted from org.apache.tools.ant.filters.StripJavaComments.
     */
    public class PreprocessingReader {
        private final Reader reader;
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.cc

        profiler_fns_.stop(&profiler_, status.get());
        return tensorflow::StatusFromTF_Status(status.get());
      }
    
      Status CollectData(XSpace* space) override {
        tensorflow::TF_StatusPtr status(TF_NewStatus());
        // Get size of buffer required for Plugin to serialize XSpace into it.
        size_t size_in_bytes;
        profiler_fns_.collect_data_xspace(&profiler_, /*buffer=*/nullptr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top