Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for nextch (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf_tpu_embedding_ops.mlir

    // CHECK-NEXT:            size: 256
    // CHECK-NEXT:          }
    // CHECK-NEXT:        }
    // CHECK-NEXT:      }
    // CHECK-NEXT:    }
    // CHECK-NEXT:  }
    // CHECK-NEXT:  attr {
    // CHECK-NEXT:    key: "config"
    // CHECK-NEXT:    value {
    // CHECK-NEXT:      s: "test_config_recv_embedding"
    // CHECK-NEXT:    }
    // CHECK-NEXT:  }
    // CHECK-NEXT:  attr {
    // CHECK-NEXT:    key: "num_outputs"
    // CHECK-NEXT:    value {
    // CHECK-NEXT:      i: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/pprof/pprof.go

    	options := &driver.Options{
    		Fetch: new(fetcher),
    		Obj:   new(objTool),
    		UI:    newUI(),
    	}
    	err := driver.PProf(options)
    	telemetry.CountFlags("pprof/flag:", *flag.CommandLine) // pprof will use the flag package as its default
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "%v\n", err)
    		os.Exit(2)
    	}
    }
    
    type fetcher struct {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/parse_example.mlir

    // CHECK-NEXT:     i: 0
    // CHECK-NEXT:   }
    // CHECK-NEXT: }
    // CHECK-NEXT: attr {
    // CHECK-NEXT:   key: "Tdense"
    // CHECK-NEXT:   value {
    // CHECK-NEXT:     list {
    // CHECK-NEXT:       type: DT_INT64
    // CHECK-NEXT:     }
    // CHECK-NEXT:   }
    // CHECK-NEXT: }
    // CHECK-NEXT: attr {
    // CHECK:        key: "dense_shapes"
    // CHECK-NEXT:   value {
    // CHECK-NEXT:     list {
    // CHECK-NEXT:       shape {
    // CHECK-NEXT:         dim {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_server_journal_linux.go

    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		// Returning false to allow checking if the service is logging to a file
    		return false
    	}
    
    	// journalctl won't return an error if we try to fetch logs for a non-existent service,
    	// hence we search for it in the list of services known to journalctl
    	return strings.Contains(string(output), service+".service")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 11 01:09:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. .github/workflows/ci.yml

    permissions:
      contents: read
    
    jobs:
      test:
        permissions:
          actions: write  # for styfle/cancel-workflow-action to cancel/stop running workflows
          contents: read  # for actions/checkout to fetch code
        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
            java: [ 8, 11, 17, 21 ]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_bridge_v1/end_to_end.mlir

          %control_27 = tf_executor.island(%control_2, %control_26) wraps "tf.NoOp"() : () -> ()
          tf_executor.fetch %control_27 : !tf_executor.control
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_composite_functions.cc

      // Insert quantization parameters for weights for ops with `weight_only_ptq`
      // attribute.
      pm.addNestedPass<func::FuncOp>(createInsertWeightParamPass());
    
      // PrepareQuantizePass uses SymbolTable to fetch relevant GEMM ops for
      // determining quantization attributes. This requires module-level context.
      pm.addPass(createPrepareQuantizePass(options));
    
      QuantizePassOptions quantize_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    	}, krt.WithName("DefaultAllowFromWaypointPolicies"))
    
    	DefaultPolicy := krt.NewSingleton[model.WorkloadAuthorization](func(ctx krt.HandlerContext) *model.WorkloadAuthorization {
    		if len(krt.Fetch(ctx, PeerAuths)) == 0 {
    			return nil
    		}
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    		// If there are any PeerAuthentications in our cache, send our static STRICT policy
    		return &model.WorkloadAuthorization{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. ci/official/utilities/code_check_changed_files.bats

        # Only shows Added, Changed, Modified, Renamed, and Type-changed files
        if [[ "$(git rev-parse --abbrev-ref HEAD)" == "pull_branch" ]]; then
            # TF's CI runs 'git fetch origin "pull/PR#/merge:pull_branch"'
            # To get the as-merged branch during the CI tests
            git diff --diff-filter ACMRT --name-only pull_branch^ pull_branch > $BATS_FILE_TMPDIR/changed_files
        else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/ca.go

    	c := t.Clusters().Default()
    	rootCert, err := FetchRootCert(c.Kube())
    	if err != nil {
    		return Cert{}, fmt.Errorf("failed to fetch root cert: %v", err)
    	}
    
    	token, err := GetServiceAccountToken(c.Kube(), "istio-ca", namespace, serviceAccount)
    	if err != nil {
    		return Cert{}, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top