Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for SYMMETRIC (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        mlir::StringAttr padding) {
      return llvm::StringSwitch<mlir::TFL::MirrorPaddingType>(padding.getValue())
          .Case("REFLECT", mlir::TFL::MirrorPaddingType::REFLECT)
          .Case("SYMMETRIC", mlir::TFL::MirrorPaddingType::SYMMETRIC);
    }
    
    #include "tensorflow/compiler/mlir/lite/transforms/generated_legalize_tf.inc"
    
    #define DECL_CONVERT_OP(tf_op)                                               \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    	for _, a := range sumZZ {
    		arg := a
    		testFunZZ(t, "AddZZ", AddZZ, arg)
    
    		arg = argZZ{a.z, a.y, a.x}
    		testFunZZ(t, "AddZZ symmetric", AddZZ, arg)
    
    		arg = argZZ{a.x, a.z, a.y}
    		testFunZZ(t, "SubZZ", SubZZ, arg)
    
    		arg = argZZ{a.y, a.z, a.x}
    		testFunZZ(t, "SubZZ symmetric", SubZZ, arg)
    	}
    }
    
    func TestProdZZ(t *testing.T) {
    	MulZZ := func(z, x, y *Int) *Int { return z.Mul(x, y) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. src/sort/zsortfunc.go

    		}
    		blockSize *= 2
    	}
    }
    
    // symMerge_func merges the two sorted subsequences data[a:m] and data[m:b] using
    // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum
    // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz
    // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
    // Computer Science, pages 714-723. Springer, 2004.
    //
    // Let M = m-a and N = b-n. Wolog M < N.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  4. src/slices/zsortordered.go

    		}
    		blockSize *= 2
    	}
    }
    
    // symMergeOrdered merges the two sorted subsequences data[a:m] and data[m:b] using
    // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum
    // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz
    // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
    // Computer Science, pages 714-723. Springer, 2004.
    //
    // Let M = m-a and N = b-n. Wolog M < N.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/math/big/int.go

    			return z
    		}
    
    		// x & y == x & y
    		z.abs = z.abs.and(x.abs, y.abs)
    		z.neg = false
    		return z
    	}
    
    	// x.neg != y.neg
    	if x.neg {
    		x, y = y, x // & is symmetric
    	}
    
    	// x & (-y) == x & ^(y-1) == x &^ (y-1)
    	y1 := nat(nil).sub(y.abs, natOne)
    	z.abs = z.abs.andNot(x.abs, y1)
    	z.neg = false
    	return z
    }
    
    // AndNot sets z = x &^ y and returns z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/slices/zsortanyfunc.go

    		}
    		blockSize *= 2
    	}
    }
    
    // symMergeCmpFunc merges the two sorted subsequences data[a:m] and data[m:b] using
    // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum
    // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz
    // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
    // Computer Science, pages 714-723. Springer, 2004.
    //
    // Let M = m-a and N = b-n. Wolog M < N.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/DoubleMath.java

       *   <li>With finite tolerance, {@code Double.POSITIVE_INFINITY} and {@code
       *       Double.NEGATIVE_INFINITY} are fuzzily equal only to themselves.
       * </ul>
       *
       * <p>This is reflexive and symmetric, but not transitive, so it is not an
       * equivalence relation and not suitable for use in {@link Object#equals}
       * implementations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/DoubleMath.java

       *   <li>With finite tolerance, {@code Double.POSITIVE_INFINITY} and {@code
       *       Double.NEGATIVE_INFINITY} are fuzzily equal only to themselves.
       * </ul>
       *
       * <p>This is reflexive and symmetric, but not transitive, so it is not an
       * equivalence relation and not suitable for use in {@link Object#equals}
       * implementations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/sort/gen_sort_variants.go

    		blockSize *= 2
    	}
    }
    
    // symMerge{{.FuncSuffix}} merges the two sorted subsequences data[a:m] and data[m:b] using
    // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum
    // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz
    // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
    // Computer Science, pages 714-723. Springer, 2004.
    //
    // Let M = m-a and N = b-n. Wolog M < N.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    }
    
    table LeakyReluOptions {
      alpha:float;
    }
    
    table SquaredDifferenceOptions {
    }
    
    enum MirrorPadMode : byte {
      // Doesn't include borders.
      REFLECT = 0,
      // Includes borders.
      SYMMETRIC = 1,
    }
    
    table MirrorPadOptions {
      mode:MirrorPadMode;
    }
    
    table UniqueOptions {
      idx_out_type:TensorType = INT32;
    }
    
    table ReverseV2Options {
    }
    
    table AddNOptions {
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
Back to top