Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for boundsCheck (0.14 sec)

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

    				kind = ssa.BoundsSlice3Acap
    			}
    			k = s.boundsCheck(k, cap, kind, bounded)
    		}
    		if j != k {
    			j = s.boundsCheck(j, k, ssa.BoundsSlice3B, bounded)
    		}
    		i = s.boundsCheck(i, j, ssa.BoundsSlice3C, bounded)
    	} else {
    		if j != k {
    			kind := ssa.BoundsSliceAlen
    			if t.IsSlice() {
    				kind = ssa.BoundsSliceAcap
    			}
    			j = s.boundsCheck(j, k, kind, bounded)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. test/loopbce.go

    		for j := 0; j < i; j++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
    			a[j] = 0   // ERROR "Proved IsInBounds$"
    			a[j+1] = 0 // FIXME: this boundcheck should be eliminated
    			a[j+2] = 0
    		}
    	}
    	return a
    }
    
    func d2(a [100]int) [100]int {
    	for i := 0; i < 100; i++ { // ERROR "Induction variable: limits \[0,100\), increment 1$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.h

    #include "xla/util.h"
    #include "tensorflow/core/common_runtime/function.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/framework/bounds_check.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/graph_def_util.h"
    #include "tensorflow/core/framework/memory_types.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.cc

    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "xla/status_macros.h"
    #include "tensorflow/core/common_runtime/function.h"
    #include "tensorflow/core/framework/bounds_check.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/graph/control_flow.h"
    #include "tensorflow/core/lib/gtl/cleanup.h"
    #include "tensorflow/core/lib/strings/proto_serialization.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util.cc

    #include "xla/util.h"
    #include "tensorflow/core/common_runtime/function.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/framework/bounds_check.h"
    #include "tensorflow/core/framework/graph_def_util.h"
    #include "tensorflow/core/framework/memory_types.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/framework/op_kernel.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    #include "xla/statusor.h"
    #include "xla/union_find.h"
    #include "xla/util.h"
    #include "tensorflow/core/common_runtime/function.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    #include "tensorflow/core/framework/bounds_check.h"
    #include "tensorflow/core/framework/graph_def_util.h"
    #include "tensorflow/core/framework/memory_types.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/framework/op_kernel.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top