Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for Store2 (0.19 sec)

  1. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpLOONG64MOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpMIPSMOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

        result = session->PRun(handle, input_pairs, output_tensor_names, &outputs);
      }
      if (!result.ok()) {
        status->status = result;
        return;
      }
    
      // Store results in c_outputs[]
      for (int i = 0; i < noutputs; ++i) {
        const Tensor& src = outputs[i];
        if (!src.IsInitialized() || src.NumElements() == 0) {
          c_outputs[i] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    func TestConvertNaNs(t *testing.T) {
    	// Test to see if a store followed by a load of a signaling NaN
    	// maintains the signaling bit. (This used to fail on the 387 port.)
    	gFloat32 = math.Float32frombits(snan)
    	runtime.Gosched() // make sure we don't optimize the store/load away
    	if got := math.Float32bits(gFloat32); got != snan {
    		t.Errorf("store/load of sNaN not faithful, got %x want %x", got, snan)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpMIPS64MOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpRISCV64MOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

          <fields>
            <field>
              <name>directory</name>
              <version>3.0.0+</version>
              <description>Describe the directory where the resources are stored. The path is relative
                to the POM.</description>
              <type>String</type>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>4.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          continue;
        }
        exceptions[arg] = operand_idx++;
      }
      // Recall those inputs to the concat op that are not produced by a binary op
      // of the `first_arg_op` kind (e.g. tf.Mul) are stored in `exceptions`. If
      // there are too many exceptions, it might not be cost effective to apply the
      // concat hoisting optimization here.
      // Setting the threshold to be 50% as a simple cost model heuristic. e.g. If 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	}
    
    	pod, ok := kl.GetPodByName(namespace, name)
    	if !ok {
    		return fmt.Errorf("pod %q cannot be found - no logs available", name)
    	}
    
    	// TODO: this should be using the podWorker's pod store as authoritative, since
    	// the mirrorPod might still exist, the pod may have been force deleted but
    	// is still terminating (users should be able to view logs of force deleted static pods
    	// based on full name).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            // we are storing it here despite its relationship to Configuration Cache logic.
            // The full prohibited hierarchy is stored because there is no efficient way to check the class hierarchy via `org.objectweb.asm.Type`.
            private static final Set<Type> DISALLOWED_AT_EXECUTION_INJECTED_SERVICES_TYPES = ImmutableSet.of(
                getType(Project.class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top