Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 123 for integ (0.05 sec)

  1. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        return absl::OkStatus();
      }
    
      // We conservatively assume that functions will both read and write resource
      // variables.  In the future we may consider doing some form of
      // inter-procedural analysis.
      if (MayCallFunction(n, flib_def)) {
        *out_resource_op_kind = XlaResourceOpKind::kReadWrite;
      } else {
        *out_resource_op_kind = std::nullopt;
      }
    
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/bitmap_test.go

    			}
    			if got := calculateRangeOffset(cidr); got != tt.want {
    				t.Errorf("DynamicRangeOffset() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    // cpu: Intel(R) Xeon(R) CPU E5-2678 v3 @ 2.50GHz
    // BenchmarkAllocateNextIPv4
    // BenchmarkAllocateNextIPv4-24    	 1175304	       870.9 ns/op	    1337 B/op	      11 allocs/op
    func BenchmarkAllocateNextIPv4Size1048574(b *testing.B) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      // Check for presence of unknown side-effecting ops within the while loop
      // body. These ops act as barriers and the optimization would not yield much
      // inter iteration parallelism for this while loop body. So return with
      // warning.
      if (chain_resource_to_ops_map.count(kUnknownResourceAndDevice) > 0) {
        std::set<std::string> blocking_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        // arguments must correspond to different resources and we can assign unique
        // IDs.
        assign_unique_id_to_all(func_op.getArguments());
      }
    
      // Since this analysis is neither inter-procedural nor inter-regional,
      // each region attached to Op's within a function is analyzed independently.
      // Seed this analysis for each such region by mapping all resource arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    		"drop_negative":        "dropneg",
    		"call_tree":            "calltree",
    		"relative_percentages": "rel",
    		"unit":                 "unit",
    		"compact_labels":       "compact",
    		"intel_syntax":         "intel",
    		"nodecount":            "n",
    		"nodefraction":         "nf",
    		"edgefraction":         "ef",
    		"trim":                 "trim",
    		"focus":                "f",
    		"ignore":               "i",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		"--line-numbers", fmt.Sprintf("--start-address=%#x", start),
    		fmt.Sprintf("--stop-address=%#x", end)}
    
    	if intelSyntax {
    		if b.isLLVMObjdump {
    			args = append(args, "--x86-asm-syntax=intel")
    		} else {
    			args = append(args, "-M", "intel")
    		}
    	}
    
    	args = append(args, file)
    	cmd := exec.Command(b.objdump, args...)
    	out, err := cmd.Output()
    	if err != nil {
    		return nil, fmt.Errorf("%v: %v", cmd.Args, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. ci/devinfra/docker_windows/Dockerfile

        sdkmanager 'extras;google;simulators'; \
        sdkmanager 'extras;google;usb_driver'; \
        sdkmanager 'extras;google;webdriver'; \
        sdkmanager 'extras;android;m2repository'; \
        sdkmanager 'extras;intel;Hardware_Accelerated_Execution_Manager'; \
        sdkmanager 'extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0'; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    				}
    			}
    			assert.Equal(t, testCase.expectedConvertedObject, outObject)
    		})
    	}
    }
    
    func TestUnstructuredToUnstructuredConversion(t *testing.T) {
    	// eventually, we don't want any inter-unstructured conversion happen, but for now, the conversion
    	// just copy/pastes
    	scheme, _ := test.TestScheme()
    	inUnstructured := &unstructured.Unstructured{
    		Object: map[string]interface{}{
    			"apiVersion": "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    Artifacts are typically designed to be used or consumed by users or other projects, or deployed to hosting systems.
    In such cases, the artifact is a single file.
    Directories are common in the case of inter-project dependencies to avoid the cost of producing the publishable artifact.
    
    [[sub:terminology_capability]]
    == Capability
    
    A capability identifies a feature offered by one or multiple components.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    namespace TF {
    
    namespace {
    
    // Note: This implements the fusions performed in the old Remapper Grappler
    // pass. That pass has specific cases for GPU and based on different
    // target configurations on both CPU and GPU (Intel MKL, ROCm, etc.). This MLIR
    // pass covers (some of) the general CPU case and at the moment does not account
    // for any target-specific configurations.
    
    // This pass is being ported over from the Grappler Remapper pass based on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top