Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for buildssa (0.32 sec)

  1. src/cmd/go/internal/load/pkg.go

    	if cfg.BuildRace {
    		deps = append(deps, "runtime/race")
    	}
    	// Using memory sanitizer forces an import of runtime/msan.
    	if cfg.BuildMSan {
    		deps = append(deps, "runtime/msan")
    	}
    	// Using address sanitizer forces an import of runtime/asan.
    	if cfg.BuildASan {
    		deps = append(deps, "runtime/asan")
    	}
    	// Building for coverage forces an import of runtime/coverage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("Transformed") == 0
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15604")
        @LeaksFileHandles
        def "transforms of file dependencies are not kept in the in-memory cache between builds"() {
            given:
            def projectDir1 = file("project1")
            def projectDir2 = file("project2")
            setupProjectInDir(projectDir1)
            setupProjectInDir(projectDir2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          mlir::Type type, const std::string& name);
    
      // Builds TF::VariantType from the given element type. Returns std::nullopt if
      // failure. Returns empty vector if the element type is not TF::VariantType or
      // there is empty TensorType in the TF::VariantType.
      std::optional<std::vector<BufferOffset<tflite::VariantSubType>>>
      BuildTFVariantType(mlir::Type element_type);
    
      // Builds TFLite tensor from the given value. `buffer_idx` is index of the
    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. src/cmd/go/internal/work/exec.go

    			return nil, nil, err
    		}
    		outObj = append(outObj, tokenFile)
    	}
    
    	if cfg.BuildMSan {
    		cgoCFLAGS = append([]string{"-fsanitize=memory"}, cgoCFLAGS...)
    		cgoLDFLAGS = append([]string{"-fsanitize=memory"}, cgoLDFLAGS...)
    	}
    	if cfg.BuildASan {
    		cgoCFLAGS = append([]string{"-fsanitize=address"}, cgoCFLAGS...)
    		cgoLDFLAGS = append([]string{"-fsanitize=address"}, cgoLDFLAGS...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      FloatOrInt diff = limit - start;
      if (std::is_integral<FloatOrInt>::value) {
        return ((std::abs(diff) + std::abs(delta) - 1) / std::abs(delta));
      }
      return std::ceil(std::abs(diff / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      return std::is_integral<FloatOrInt>::value
                 ? ((std::abs(limit - start) + std::abs(delta) - 1) /
                    std::abs(delta))
                 : std::ceil(std::abs((limit - start) / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Converts a sparse representation into a dense tensor.";
    
      let description = [{
    Builds an array `dense` with shape `output_shape` such that
    
    ```
    # If sparse_indices is scalar
    dense[i] = (i == sparse_indices ? sparse_values : default_value)
    
    # If sparse_indices is a vector, then for each i
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        : object_graph_(object_graph),
          names_to_export_(exported_names.begin(), exported_names.end()) {
      // Visit all reachable nodes from the root of the object graph.
      // This builds up object_names_ to contain all names like `foo.bar` that a
      // particular node in the graph can be reached from.
      RecursivelyVisitObjectGraph(/*node_id=*/0);
    
      // Populate the exported_names_ map.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    			return C_ADDR
    
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			c.instoffset = a.Offset
    			if a.Sym == nil {
    				break
    			} else if a.Sym.Type == objabi.STLSBSS {
    				// For PIC builds, use 12 byte got initial-exec TLS accesses.
    				if c.ctxt.Flag_shared {
    					return C_TLS_IE
    				}
    				// Otherwise, use 8 byte local-exec TLS accesses.
    				return C_TLS_LE
    			} else {
    				return C_ADDR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top